QueryFilter.cs 521 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. namespace wispro.sp.share
  3. {
  4. public class QueryFilter
  5. {
  6. public int userId { get; set; }
  7. public int? CalMonthId { get; set; }
  8. public IList<FieldCondition> ConditionTree { get; set; } =new List<FieldCondition>();
  9. public jxType jxType { get; set; }
  10. public IList<OrderField> Sorts { get; set; } = new List<OrderField>();
  11. public int PageSize { get; set; } = 1;
  12. public int PageIndex { get; set; } = 10;
  13. }
  14. }