using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 我的任务查询 /// public class QueryTaskManageDto { /// /// 提单号 /// /// public string MBlNo { get; set; } /// /// 开船日期起始 /// /// public string ETDBegin { get; set; } /// /// 开船日期结束 /// /// public string ETDEnd { get; set; } /// /// 任务起始日期 /// /// 2022-12-01 public string TaskDateBegin { get; set; } /// /// 任务起始结束 /// /// public string TaskDateEnd { get; set; } /// /// 任务类型 /// /// public string TaskType { get; set; } /// /// 任务来源 /// /// public string TaskSource { get; set; } /// /// 接收人 /// /// public string TaskRecvName { get; set; } /// /// 当前页码 /// /// 1 public int PageNo { get; set; } = 1; /// /// 页码容量 /// /// 20 public int PageSize { get; set; } = 20; /// /// 排序字段 /// /// TaskType public string SortField { get; set; } /// /// 排序方法,默认降序 /// /// true public bool descSort { get; set; } = true; } }