All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.penglecode.common.support.PaginationResult Maven / Gradle / Ivy

Go to download

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy