1234567891011121314151617181920212223 |
- using System.Collections.Generic;
- namespace wispro.sp.share
- {
- public class QueryFilter
- {
- public int userId { get; set; }
- public IList<FieldCondition> ConditionTree { get; set; }
- public jxType jxType { get; set; }
- public IList<OrderField> Sorts { get; set; }
- public int PageSize { get; set; }
- public int PageIndex { get; set; }
- }
-
- }
|