package cn.edu.hbcf.common.vo; import java.util.List; /** * Ext Grid返回对象 * * @author * */ public class ExtGridReturn { /** * 记录总条数 */ private int results; private int otherCount; /** * 所有数据 */ private List<?> rows; public ExtGridReturn() { } public ExtGridReturn(int results, List<?> rows) { this.results = results; this.rows = rows; } public int getResults() { return results; } public void setResults(int results) { this.results = results; } public List<?> getRows() { return rows; } public void setRows(List<?> rows) { this.rows = rows; } public int getOtherCount() { return otherCount; } public void setOtherCount(int otherCount) { this.otherCount = otherCount; } }
原文:http://www.cnblogs.com/zrui-xyu/p/4942838.html