NodePaginationReq.java
1.56 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
package com.github.ltsopensource.admin.request;
import com.github.ltsopensource.core.cluster.NodeType;
import java.util.Date;
/**
* @author Robert HG (254963746@qq.com) on 6/6/15.
*/
public class NodePaginationReq extends PaginationReq {
private String identity;
private String ip;
private String nodeGroup;
private NodeType nodeType;
private Boolean available;
private Date startDate;
private Date endDate;
public NodePaginationReq() {
// 默认不分页
setLimit(Integer.MAX_VALUE);
}
public String getNodeGroup() {
return nodeGroup;
}
public void setNodeGroup(String nodeGroup) {
this.nodeGroup = nodeGroup;
}
public String getIdentity() {
return identity;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public NodeType getNodeType() {
return nodeType;
}
public void setNodeType(NodeType nodeType) {
this.nodeType = nodeType;
}
public Boolean getAvailable() {
return available;
}
public void setAvailable(Boolean available) {
this.available = available;
}
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
}