IPage.java
1.65 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
81
82
83
84
package com.cnlive.goldenline.model.mine;
import java.util.List;
/**
* Description:
* Created on 2017/3/31
* Author : 郭
*/
public class IPage {
//表示一共几页数据
private int count;
//目前是第几页
private int current;
// 表示一页多少数据
private int size;
//表示一共多少条数据
private int total;
//优惠券bean
private List<CnliveMyCouponPo> rows;
public IPage() {
super();
}
public IPage(int count, int current, int size, int total, List<CnliveMyCouponPo> rows) {
this.count = count;
this.current = current;
this.size = size;
this.total = total;
this.rows = rows;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public int getCurrent() {
return current;
}
public void setCurrent(int current) {
this.current = current;
}
public int getSize() {
return size;
}
public void setSize(int size) {
this.size = size;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public List<CnliveMyCouponPo> getRows() {
return rows;
}
public void setRows(List<CnliveMyCouponPo> rows) {
this.rows = rows;
}
@Override
public String toString() {
return "IPage{" +
"count=" + count +
", current=" + current +
", size=" + size +
", total=" + total +
", rows=" + rows +
'}';
}
}