com.penglecode.common.support.PaginationResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
commons is a little java tool to make your development easier in your work.
The newest version!
package com.penglecode.common.support;
/**
* 分页结果
* @param
* @author pengpeng
* @date 2014年12月18日 下午4:37:10
* @version 1.0
*/
public class PaginationResult extends Result {
private Integer totalRowCount;
public Integer getTotalRowCount() {
return totalRowCount;
}
public void setTotalRowCount(Integer totalRowCount) {
this.totalRowCount = totalRowCount;
}
}