ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
package com.vci.client.portal.UI.v3.comptdesign.compt.popupcompt;
 
import java.io.Serializable;
 
/**
 * 
 * 
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2016</p>
 * <p>Company: VCI</p>
 * @author xiongchao
 * @time 2017-3-1
 * @version 1.0
 * @param <T>
 */
public class ResData<T> implements Serializable{
    /**
     * 
     */
    private static final long serialVersionUID = -5410504389701035826L;
    private T[] datas = null;
    private int total = 0;
    public ResData(){
        
    }
    public ResData(T[] datas, int total) {
        super();
        this.datas = datas;
        this.total = total;
    }
    public T[] getDatas() {
        return datas;
    }
    public void setDatas(T[] datas) {
        this.datas = datas;
    }
    public int getTotal() {
        return total;
    }
    public void setTotal(int total) {
        this.total = total;
    }
}