You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
333 B
C#

namespace DS.Module.Core;
/// <summary>
/// 查询请求实体
/// </summary>
public class PageRequest
{
/// <summary>
/// 查询条件
/// </summary>
public string QueryCondition { get; set; }
/// <summary>
/// 分页排序条件
/// </summary>
public PageCondition PageCondition { get; set; }
}