| 1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace SiteCore
- {
- public class DataStruct
- {
- public string Type;
- public int CurrentPage;
- public int PageSize;
- public string DetailKeys;
- public string EditUrl;
- /// <summary>
- /// 排序(ID desc)
- /// </summary>
- public string Order;
- public string MainWhere;
- public string SecondWhere;
- public int TotalCount;
- public int TotalPage;
- public int HasOperate;
- public string PrimaryKeys;
- public string EmptyMessage;
- public string Fileds;
- public bool isExport;
- public DataStruct()
- {
- PageSize = 20;
- CurrentPage = 0;
- MainWhere = "";
- SecondWhere = "";
- Order = "";
- PrimaryKeys = "ID";
- EmptyMessage = "当前没有记录";
- Fileds = "*";
- isExport = false;
- }
- }
- }
|