admin
2020-06-17 87b391b8a81ee2abdaa4131d245784ecc7a54e9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.ks.tool.bkz.entity.user;
 
import java.util.Date;
 
public class UserInfo {
    public final static int LEVEL_GENERAL = 1;//普通用户
    public static int LEVEL_SUPER = 2;//超级用户
 
    public  final static int STATE_NORMAL=0;//正常
    public  final static int STATE_FORBIDDEN=1;//被封禁
 
    private Long id;//用户ID
    private String account;//账号
    private Integer level;//用户等级
    private Date loginTime;//登录时间
    private Date superTime;//成为会员的时间
    private Date createTime;//创建时间
    private Date updateTime;//更新时间
    private Integer state;
    private String stateDesc;
 
 
    private String loginIpInfo;//登录信息
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getAccount() {
        return account;
    }
 
    public void setAccount(String account) {
        this.account = account;
    }
 
    public Integer getLevel() {
        return level;
    }
 
    public void setLevel(Integer level) {
        this.level = level;
    }
 
    public Date getLoginTime() {
        return loginTime;
    }
 
    public void setLoginTime(Date loginTime) {
        this.loginTime = loginTime;
    }
 
    public Date getSuperTime() {
        return superTime;
    }
 
    public void setSuperTime(Date superTime) {
        this.superTime = superTime;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getLoginIpInfo() {
        return loginIpInfo;
    }
 
    public void setLoginIpInfo(String loginIpInfo) {
        this.loginIpInfo = loginIpInfo;
    }
 
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public String getStateDesc() {
        return stateDesc;
    }
 
    public void setStateDesc(String stateDesc) {
        this.stateDesc = stateDesc == null ? null : stateDesc.trim();
    }
 
 
}