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;
|
}
|
}
|