Commit 400cbb7d authored by sml's avatar sml

分页baseBean

parent 2b3d632c
package com.jz.common.bean;
/**分页信息封装
* @author ybz
*
*/
public class BasePageBean {
private int pageNum = 1;
private int pageSize = 10;
public int getPageNum() {
return pageNum;
}
public void setPageNum(int pageNum) {
this.pageNum = pageNum;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment