using MyCode.Project.Infrastructure.Enumeration; using System; namespace MyCode.Project.Domain.Dtos.Common { /// /// 排序查询 /// public class SortQuery { /// /// 排序字段 /// public int Type { get; set; } /// /// 是否降序,true:是,false:否 /// public bool Desc { get; set; } } }