com.soento.core.lang.Pagination Maven / Gradle / Ivy
package com.soento.core.lang;
/**
* @author soento
*/
public class Pagination extends BaseObject {
private static final long serialVersionUID = 8202001330121100405L;
/**
* 当前页
*/
private int current = 1;
/**
* 每页长度
*/
private int pageSize = 10;
/**
* 总记录数
*/
private int total = 0;
public int getCurrent() {
return current;
}
public void setCurrent(int current) {
this.current = current;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
}