namespace Dpz.Core.Entity.Base.Indexes;
/// <summary>
/// 索引字段排序方向
/// </summary>
public enum IndexSortDirection
{
/// <summary>
/// 升序
/// </summary>
Ascending = 1,
/// <summary>
/// 降序
/// </summary>
Descending = -1,
}
AI 正在分析代码…
评论加载中...