12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- namespace wispro.sp.share
- {
- public class QueryFilter
- {
- public int userId { get; set; }
- public int? CalMonthId { get; set; }
- public IList<FieldCondition> ConditionTree { get; set; } =new List<FieldCondition>();
- public jxType jxType { get; set; }
- public IList<OrderField> Sorts { get; set; } = new List<OrderField>();
- public int PageSize { get; set; } = 1;
- public int PageIndex { get; set; } = 10;
- }
-
- }
|