NodeOnOfflineLogPaginationReq.java
1.08 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
package com.github.ltsopensource.admin.request;
import java.util.Date;
/**
* @author Robert HG (254963746@qq.com) on 9/26/15.
*/
public class NodeOnOfflineLogPaginationReq extends PaginationReq {
private Date startLogTime;
private Date endLogTime;
private String group;
private String identity;
private String event;
public String getIdentity() {
return identity;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public String getEvent() {
return event;
}
public void setEvent(String event) {
this.event = event;
}
public String getGroup() {
return group;
}
public void setGroup(String group) {
this.group = group;
}
public Date getStartLogTime() {
return startLogTime;
}
public void setStartLogTime(Date startLogTime) {
this.startLogTime = startLogTime;
}
public Date getEndLogTime() {
return endLogTime;
}
public void setEndLogTime(Date endLogTime) {
this.endLogTime = endLogTime;
}
}