QueryFilter.cs 408 B

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