首页 > 其他 > 详细

ExtGridReturn ,存放ext的实体类集合和总数

时间:2015-11-06 15:58:48      阅读:341      评论:0      收藏:0      [点我收藏+]
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;
    }
    
    

}

 

ExtGridReturn ,存放ext的实体类集合和总数

原文:http://www.cnblogs.com/zrui-xyu/p/4942838.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!