namespace HealthMonitor.Util.QueryObjects { /// /// 排序条件 /// public class OrderByCondition { /// /// 字段名称 /// public string? Key { get; set; } /// /// 是否倒序 /// public bool IsDesc { get; set; } } }