using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 品名分类参数台账查询 /// public class QueryParaGoodsCategoryDto { /// /// 品名分类 /// /// 02 public string GoodsCategory { get; set; } /// /// 品名分类名称 /// /// public string GoodsCategoryName { get; set; } /// /// 创建者名称 /// /// public string CreateUserName { get; set; } /// /// 修改者名称 /// /// public string UpdateUserName { get; set; } /// /// 创建时间开始 /// /// 2022-01-01 public string CreateTimeBegin { get; set; } /// /// 创建时间结束 /// /// 2023-07-01 public string CreateTimeEnd { get; set; } /// /// 更新时间开始 /// /// public string UpdateTimeBegin { get; set; } /// /// 更新时间结束 /// /// public string UpdateTimeEnd { get; set; } /// /// 当前页码 /// /// 1 public int PageNo { get; set; } = 1; /// /// 页码容量 /// /// 20 public int PageSize { get; set; } = 20; /// /// 排序字段 /// /// GoodsCategory public string SortField { get; set; } /// /// 排序方法,默认降序 /// /// true public bool descSort { get; set; } = true; } }