using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Gs.DevApp.Models { public class ReturnModel { /// /// Default = -100默认, Unauthorized = -101非法调用, Exception = -102系统代码异常, Success = 1成功 /// public string rtnCode { set; get; } public T rtnData { set; get; } public string rtnMsg { get; set; } } public class PageListModel { /// /// 列表 /// public System.Data.DataTable list { get; set; } /// /// 总页数 /// public int pages; /// /// 总记录数 /// public int total; /// /// 每页大小 /// public int everyPageSize; /// /// 扩展用,单文本,比如金额合计等其它项目 /// public string extendText; /// /// 扩展用,列表 /// public List extendList; } }