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;
|
}
|
|
}
|