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.

102 lines
2.4 KiB
C#

namespace DS.WMS.Core.TaskPlat.Dtos
{
/// <summary>
/// 我的任务查询
/// </summary>
public sealed class QueryTaskManageDto
{
/// <summary>
/// 业务编号(委托编号/订舱编号/客户编号/提单号/分单号)
/// </summary>
public string BusinessNo { get; set; }
/// <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 TaskCategory { get; set; }
/// <summary>
/// 接收人
/// </summary>
/// <example></example>
public string TaskRecvName { get; set; }
/// <summary>
/// 任务状态
/// </summary>
/// <example></example>
public string Status { get; set; }
/// <summary>
/// 任务主键
/// </summary>
public string PKId { get; set; }
/// <summary>
/// 大简云用户Id
/// </summary>
public string DJYUserId { get; set; }
/// <summary>
/// 装货港代码
/// </summary>
public string? PortLoadCode { get; set; }
/// <summary>
/// 卸货港代码
/// </summary>
public string? PortDischargeCode { get; set; }
/// <summary>
/// 下属任务权限范围编码
/// </summary>
public string? UnderlingTaskScope { get; set; }
}
}