net.mingsoft.basic.bean.EUListBean Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2012-present 铭软科技(mingsoft.net)
* 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
* 遵循 铭软科技《服务协议》中的《保密条款》
*/
package net.mingsoft.basic.bean;
import java.util.List;
/**
*
* 给返回json对象,支持分页
*
* @author 铭飞团队
* @version 版本号:
* 创建日期:2016年6月2日
* 历史修订:
*/
public class EUListBean {
private int total;
private List rows;
// 需要一个空的构造器防止fastJson初始化报错
public EUListBean() {
}
public EUListBean(List rows, int total) {
this.total = total;
this.rows = rows;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public List getRows() {
return rows;
}
public void setRows(List rows) {
this.rows = rows;
}
}