using AntDesign.TableModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using wispro.sp.entity; using wispro.sp.utility; namespace wispro.sp.share { public class QueryFilter { public int userId { get; set; } public ConditionTreeNode ConditionTree { get; set; } public jxType jxType { get; set; } public IList Sorts { get; set; } public int PageSize { get; set; } public int PageIndex { get; set; } } }