对比新文件 |
| | |
| | | 锘縰sing System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace WIDESEA_Core |
| | | { |
| | | public class PageDataOptions |
| | | { |
| | | public int Page { get; set; } |
| | | public int Rows { get; set; } |
| | | public int Total { get; set; } |
| | | public string TableName { get; set; } |
| | | public string Sort { get; set; } |
| | | /// <summary> |
| | | /// 鎺掑簭鏂瑰紡 |
| | | /// </summary> |
| | | public string Order { get; set; } |
| | | public string Wheres { get; set; } |
| | | public bool Export { get; set; } |
| | | public object Value { get; set; } |
| | | /// <summary> |
| | | /// 鏌ヨ鏉′欢 |
| | | /// </summary> |
| | | public List<SearchParameters> Filter { get; set; } |
| | | } |
| | | public class SearchParameters |
| | | { |
| | | public string Name { get; set; } |
| | | public string Value { get; set; } |
| | | //鏌ヨ绫诲瀷锛歀inqExpressionType |
| | | public string DisplayType { get; set; } |
| | | } |
| | | } |