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