zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.shlanbao.tzsc.base.model;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * Easyui combobox组件DataGrid
 * <li>@author Leejean
 * <li>@create 2014-6-24 下午04:17:52
 */
@SuppressWarnings({ "rawtypes", "serial" })
public class DataGrid implements java.io.Serializable {
 
    private Long total = 0L;
    private List rows = new ArrayList();
 
    public Long getTotal() {
        return total;
    }
 
    public void setTotal(Long total) {
        this.total = total;
    }
 
    public List getRows() {
        return rows;
    }
 
    public void setRows(List rows) {
        this.rows = rows;
    }
    /**
     * 
     * @param rows 数据集
     * @param total 总记录数
     */
    public DataGrid(List rows,Long total) {
        super();
        this.total = total;
        this.rows = rows;
    }
 
    @Override
    public String toString() {
        return "DataGrid [total=" + total + ", rows=" + rows + "]";
    }
    
}