-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdminRole.java
More file actions
46 lines (35 loc) · 896 Bytes
/
Copy pathAdminRole.java
File metadata and controls
46 lines (35 loc) · 896 Bytes
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
package dzdc.core.enity;
import com.viviframework.petapojo.annotations.PrimaryKey;
import com.viviframework.petapojo.annotations.TableName;
@TableName("admin_role")
@PrimaryKey("id")
public class AdminRole {
private int id;
private int sysId;
private String roleName;
private String remark;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getSysId() {
return sysId;
}
public void setSysId(int sysId) {
this.sysId = sysId;
}
public String getRoleName() {
return roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}