using System.Collections.Generic;
|
|
namespace iWareModel
|
{
|
public class ResponseListDataPageEntity<T> where T:class
|
{
|
public string resCode { get; set; }
|
public DataStruct<T> data { get; set; }
|
public string msg { get; set; }
|
}
|
|
public class DataStruct<T> where T : class
|
{
|
public List<T> datas { get; set; }
|
public int totalNum { get; set;}
|
public int currentPage { get; set; }
|
|
}
|
|
}
|