-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdminRequestLog.java
More file actions
66 lines (50 loc) · 1.21 KB
/
Copy pathAdminRequestLog.java
File metadata and controls
66 lines (50 loc) · 1.21 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
package dzdc.core.enity;
import com.viviframework.petapojo.annotations.PrimaryKey;
import com.viviframework.petapojo.annotations.TableName;
import org.joda.time.DateTime;
@TableName("admin_request_log")
@PrimaryKey("id")
public class AdminRequestLog {
private int id;
private Integer uid;
private String url;
private String ip;
private String requestBody;
private DateTime createDate;
public Integer getUid() {
return uid;
}
public void setUid(Integer uid) {
this.uid = uid;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getRequestBody() {
return requestBody;
}
public void setRequestBody(String requestBody) {
this.requestBody = requestBody;
}
public DateTime getCreateDate() {
return createDate;
}
public void setCreateDate(DateTime createDate) {
this.createDate = createDate;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
}