22 lines
449 B
C#
22 lines
449 B
C#
|
using MyCode.Project.Infrastructure.Enumeration;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Dtos.Common
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 排序查询
|
|||
|
/// </summary>
|
|||
|
public class SortQuery
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 排序字段
|
|||
|
/// </summary>
|
|||
|
public int Type { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否降序,true:是,false:否
|
|||
|
/// </summary>
|
|||
|
public bool Desc { get; set; }
|
|||
|
}
|
|||
|
}
|