34 lines
870 B
C#
34 lines
870 B
C#
using JSMachine.WMS.Infrastructure.LambdaHelp;
|
|
using SqlSugar;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace JSMachine.WMS.Domain.Entity
|
|
{
|
|
/// <summary>
|
|
/// 分页查询条件
|
|
/// </summary>
|
|
public class PageQueryCondition
|
|
{
|
|
/// <summary>
|
|
/// 当前页
|
|
/// </summary>
|
|
public int CurrentPage { get; set; }
|
|
/// <summary>
|
|
/// 每页显示的条数
|
|
/// </summary>
|
|
public int PageSize { get; set; }
|
|
/// <summary>
|
|
/// 要排序的字段
|
|
/// </summary>
|
|
public string OrderByFiled { get; set; }
|
|
/// <summary>
|
|
///排序方式
|
|
/// </summary>
|
|
public OrderByType OrderByType { get; set; }
|
|
/// <summary>
|
|
/// 查询条件
|
|
/// </summary>
|
|
public List<IConditionalModel> Filters { get; set; }
|
|
}
|
|
}
|