You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.1 KiB
C#
87 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 我的任务查询
|
|
/// </summary>
|
|
public class QueryTaskManageDto
|
|
{
|
|
/// <summary>
|
|
/// 提单号
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string MBlNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开船日期起始
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string ETDBegin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开船日期结束
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string ETDEnd { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务起始日期
|
|
/// </summary>
|
|
/// <example>2022-12-01</example>
|
|
public string TaskDateBegin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务起始结束
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string TaskDateEnd { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务类型
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string TaskType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务来源
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string TaskSource { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接收人
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string TaskRecvName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前页码
|
|
/// </summary>
|
|
/// <example>1</example>
|
|
public int PageNo { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// 页码容量
|
|
/// </summary>
|
|
/// <example>20</example>
|
|
public int PageSize { get; set; } = 20;
|
|
|
|
/// <summary>
|
|
/// 排序字段
|
|
/// </summary>
|
|
/// <example>TaskType</example>
|
|
public string SortField { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序方法,默认降序
|
|
/// </summary>
|
|
/// <example>true</example>
|
|
public bool descSort { get; set; } = true;
|
|
}
|
|
}
|