Manager.java
1.93 KB
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
package com.bjivt.entity.showtime;
import java.util.Set;
import com.bjivt.entity.BaseEntity;
public class Manager extends BaseEntity {
/**
*
*/
private static final long serialVersionUID = 6810380928980544709L;
protected Integer operatorId=null; /*管理员ID */
protected String createTime=null; /*创建时间*/
private String realName=null; /*真实姓名*/
private String loginName=null; /*登陆名*/
private String loginPass=null; /*登陆密码*/
private String status =null; /*状态: -1,冻结;0,无效;1,有效 */
private Set<Role> roles=null; /*角色*/
private String competenceTree=null; /*权限树*/
private String competencesXml=null; /*权限操作*/
public String getCreateTime() {
return createTime;
}
public Integer getOperatorId() {
return operatorId;
}
public void setOperatorId(Integer operatorId) {
this.operatorId = operatorId;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getRealName() {
return realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getLoginName() {
return loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public String getLoginPass() {
return loginPass;
}
public void setLoginPass(String loginPass) {
this.loginPass = loginPass;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Set<Role> getRoles() {
return roles;
}
public void setRoles(Set<Role> roles) {
this.roles = roles;
}
public String getCompetenceTree() {
return competenceTree;
}
public void setCompetenceTree(String competenceTree) {
this.competenceTree = competenceTree;
}
public String getCompetencesXml() {
return competencesXml;
}
public void setCompetencesXml(String competencesXml) {
this.competencesXml = competencesXml;
}
}