-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdminOperationLog.java
More file actions
86 lines (78 loc) · 1.77 KB
/
Copy pathAdminOperationLog.java
File metadata and controls
86 lines (78 loc) · 1.77 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
85
86
package dzdc.core.enity;
import org.joda.time.DateTime;
import com.viviframework.petapojo.annotations.PrimaryKey;
import com.viviframework.petapojo.annotations.TableName;
@TableName("admin_operation_log")
@PrimaryKey("id")
public class AdminOperationLog {
private int id;
private Integer uid;//用户id
private String userName;//用户名
private String ip;//用户ip
private Integer menuId;//模块id
private String menuName;//模块名
private String url;//访问路径
private String operation;//操作
private DateTime createDate;//创建时间
private int SysId;//系統id
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Integer getUid() {
return uid;
}
public void setUid(Integer uid) {
this.uid = uid;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public Integer getMenuId() {
return menuId;
}
public void setMenuId(Integer menuId) {
this.menuId = menuId;
}
public String getMenuName() {
return menuName;
}
public void setMenuName(String menuName) {
this.menuName = menuName;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getOperation() {
return operation;
}
public void setOperation(String operation) {
this.operation = operation;
}
public DateTime getCreateDate() {
return createDate;
}
public void setCreateDate(DateTime createDate) {
this.createDate = createDate;
}
public int getSysId() {
return SysId;
}
public void setSysId(int sysId) {
SysId = sysId;
}
}