-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseParam.java
More file actions
47 lines (34 loc) · 891 Bytes
/
BaseParam.java
File metadata and controls
47 lines (34 loc) · 891 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
package com.tockm.utils;
import org.slf4j.LoggerFactory;
import java.util.Objects;
import java.util.logging.Logger;
public class BaseParam {
private SimplePage simplePage;
private Integer pageNo;
private Integer pageSize;
private String orderBy;
public SimplePage getSimplePage() {
return simplePage;
}
public void setSimplePage(SimplePage simplePage) {
this.simplePage = simplePage;
}
public Integer getPageNo() {
return pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Integer getPageSize() {
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getOrderBy() {
return orderBy;
}
public void setOrderBy(String orderBy) {
this.orderBy = orderBy;
}
}