田源
2024-03-07 4b4083fd73dc27ece42f4835483565eef0e4f608
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
package com.vci.common.objects;
 
/**
 * 通用(分页)查询结果对象
 * <p>Description: </p>
 * @author xchao
 * @time 2013-4-23
 */
public class QueryResult<T> {
    // 数据总数
    private int total = 0;
    // 单页数据集合
    private T[] datas = null;
    public int getTotal() {
        return total;
    }
    public void setTotal(int total) {
        this.total = total;
    }
    public T[] getDatas() {
        return datas;
    }
    public void setDatas(T[] datas) {
        this.datas = datas;
    }
}