using System.Collections.Generic; using HealthMonitor.Util.QueryObjects; namespace HealthMonitor.Util.Models { public class GeneralParam { /// /// 过滤条件列表 /// public List? Filters { get; set; } /// /// 排序条件列表 /// public List? OrderBys { get; set; } } }