-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPageObject.java
More file actions
43 lines (39 loc) · 851 Bytes
/
PageObject.java
File metadata and controls
43 lines (39 loc) · 851 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
package com.nxdcms.entity;
import java.util.List;
public class PageObject {
private int pageSize;
private int curPage;
private int totalRecord;
private List list;
public PageObject(int pageSize, int curPage, int totalRecord, List list) {
super();
this.pageSize = pageSize;
this.curPage = curPage;
this.totalRecord = totalRecord;
this.list = list;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getCurPage() {
return curPage;
}
public void setCurPage(int curPage) {
this.curPage = curPage;
}
public int getTotalRecord() {
return totalRecord;
}
public void setTotalRecord(int totalRecord) {
this.totalRecord = totalRecord;
}
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
}