QueryFilter.cs 670 B

12345678910111213141516171819202122232425262728293031
  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. /// <summary>
  11. /// 0:我处理的
  12. /// 1:我审核的
  13. /// </summary>
  14. public int DoingOrReview { get; set; }
  15. public IList<OrderField> Sorts { get; set; } = new List<OrderField>();
  16. public int PageSize { get; set; } = 1;
  17. public int PageIndex { get; set; } = 10;
  18. }
  19. }