using JSMachine.WMS.App.Dto.Enum;
using JSMachine.WMS.Infrastructure.LambdaHelp;
using SqlSugar;
namespace JSMachine.WMS.App.Dto.Bo
{
///
/// 全文搜索分页查询条件
///
public class FullTextSearchByPageConditionBo
{
///
/// 当前页
///
public int CurrentPage { get; set; }
///
/// 每页显示的条数
///
public int PageSize { get; set; }
///
/// 要排序的字段
///
public string OrderByFiled { get; set; }
///
///排序方式
///
public OrderByType OrderByType { get; set; }
///
/// 全文搜索类型
///
public FullTextSearchType FullTextSearchType { get; set; }
///
/// 关键字
///
public string KeyWords { get; set; }
}
}