using System.Collections.Generic; namespace wispro.sp.share { public class QueryFilter { public int userId { get; set; } public int? CalMonthId { get; set; } public IList ConditionTree { get; set; } =new List(); public jxType jxType { get; set; } /// /// 0:我处理的 /// 1:我审核的 /// public int DoingOrReview { get; set; } public IList Sorts { get; set; } = new List(); public int PageSize { get; set; } = 1; public int PageIndex { get; set; } = 10; } }