You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace HealthMonitor.Util.QueryObjects
- {
- /// <summary>
- /// 排序条件
- /// </summary>
- public class OrderByCondition
- {
- /// <summary>
- /// 字段名称
- /// </summary>
- public string? Key { get; set; }
- /// <summary>
- /// 是否倒序
- /// </summary>
- public bool IsDesc { get; set; }
- }
- }
|