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.
85 lines
2.0 KiB
C#
85 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 我的任务查询
|
|
/// </summary>
|
|
public sealed class QueryTaskManageDto: QueryTaskManageBaseDto
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|