doum
6 天以前 2b287056e2f59518888d05a1bbc7e5a55fbd84d5
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
package com.doumee.keyCabinet.http.param;
 
import java.io.Serializable;
 
/**
 * 分页工具类 <一句话功能简述> <功能详细描述>
 * 
 * @author wss
 * @version [版本号, 2015-3-30]
 * @since [产品/模块版本]
 */
public class PaginationBaseObject implements Serializable {
 
    //"行"
    private int rows;
 
    //"页",example = "1")
    private int page;
 
    //"查询时间")
    private String firstQueryTime;
 
    public PaginationBaseObject( int page,int rows) {
        this.rows = rows;
        this.page = page;
    }
 
    public PaginationBaseObject() {
 
    }
 
    public int getRows() {
        return rows;
    }
 
    public void setRows(int rows) {
        this.rows = rows;
    }
 
    public int getPage() {
        return page;
    }
 
    public void setPage(int page) {
        this.page = page;
    }
 
    public String getFirstQueryTime() {
        return firstQueryTime;
    }
 
    public void setFirstQueryTime(String firstQueryTime) {
        this.firstQueryTime = firstQueryTime;
    }
 
}