import java.util.List;

/**
* easyUIDataGrid对象返回值
* <p>Title: EasyUIResult</p>
* <p>Description: </p>
* <p>Company: www.itcast.com</p>
* @author 入云龙
* @date 2015年7月21日下午4:12:52
* @version 1.0
*/
public class EasyUIResult {

private Integer total;

private List<?> rows;

public EasyUIResult(Integer total, List<?> rows) {
this.total = total;
this.rows = rows;
}

public EasyUIResult(long total, List<?> rows) {
this.total = (int) total;
this.rows = rows;
}

public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
public List<?> getRows() {
return rows;
}
public void setRows(List<?> rows) {
this.rows = rows;
}

}

最新文章

  1. WP8如何添加Newtonsoft.Json包
  2. JS 阶段小练习~ 无缝滚动
  3. Proj.4 API 中文参考
  4. MongoDB使用操作
  5. 学习笔记-Kuaihu(仿知乎日报)
  6. flex+java实现文件的上传
  7. exists与in的使用与区别
  8. oracle服务介绍
  9. NOI2014 魔法森林
  10. BestCoder Round #51 (div.2)
  11. UI几个重要使用方法
  12. Borda count
  13. 如何取得ChipmunkConstraint实例对象的私有属性
  14. Keepalived部署与配置详解
  15. Py西游攻关之Socket网络编程
  16. 【转】js程序中美元符号$是什么
  17. Vmware 无法启动虚拟机 -VMware Workstation and Device/Credential Guard are not compatible.
  18. Newtonsoft.Json WindowPhone7.1
  19. MySQL 从库down机
  20. 破解版ps

热门文章

  1. python3.7内置函数整理笔记
  2. LG4718 【模板】Pollard-Rho算法 和 [Cqoi2016]密钥破解
  3. ASP.NET MVC 5 入门-2控制器、路由
  4. GITHUB使用指南、
  5. 什么是 socket?简述基于 tcp 协议的套接字通信流程?
  6. log4j+junit+maven
  7. C# 调用 C++ Dll 类型转换的方式 全
  8. org.apache.ibatis.cache.CacheException: Error serializing object
  9. 请解释或描述一下Django的架构
  10. Java SpringBoot使用Redis缓存和Ehcache