using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 约号台账查询 /// public class QueryParaContractNoDto { /// /// 合约号编号 /// public string ContractNo { get; set; } /// /// 合约号名称 /// public string ContractName { get; set; } /// /// 合约号备注 /// public string ContractNote { 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; /// /// 排序字段 /// /// ContractNo public string SortField { get; set; } /// /// 排序方法,默认降序 /// /// true public bool descSort { get; set; } = true; } }