mirror of
https://github.com/ZSCNetSupportDept/WechatTicketSystem.git
synced 2025-10-30 01:46:18 +08:00
using maven build tools instead
This commit is contained in:
24
src/main/java/love/sola/netsupport/pojo/User.java
Normal file
24
src/main/java/love/sola/netsupport/pojo/User.java
Normal file
@@ -0,0 +1,24 @@
|
||||
package love.sola.netsupport.pojo;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import love.sola.netsupport.enums.ISPType;
|
||||
|
||||
/**
|
||||
* ***********************************************
|
||||
* Created by Sola on 2014/8/20.
|
||||
* Don't modify this source without my agreement
|
||||
* ***********************************************
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class User {
|
||||
|
||||
private final int id;
|
||||
private final String name;
|
||||
private final long studentId;
|
||||
private String netAccount;
|
||||
private ISPType isp;
|
||||
private String wechatId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user