|
|
|
|
using DS.Module.Core;
|
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务目的港未提货未返箱
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("task_pod_discharge_gateout_full", "任务目的港未提货未返箱")]
|
|
|
|
|
public class TaskPodDischargeGateoutFull : BaseModel<long>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务主键ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false ) ]
|
|
|
|
|
public long TaskId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知类型 CHARGE_FULL-卸船未提货,GATEOUT_FULL-提箱未返空箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "通知类型 CHARGE_FULL-卸船未提货,GATEOUT_FULL-提箱未返空箱", IsNullable = true , Length = 20 ) ]
|
|
|
|
|
public string? NoticeType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知类型名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "通知类型名称", IsNullable = true , Length = 200 ) ]
|
|
|
|
|
public string? NoticeTypeName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "主单号", IsNullable = true , Length = 64 ) ]
|
|
|
|
|
public string? MblNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船公司
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "船公司", IsNullable = true , Length = 50 ) ]
|
|
|
|
|
public string? Carrier { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知接收时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "通知接收时间", IsNullable = true ) ]
|
|
|
|
|
public DateTime? NoticeDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true ) ]
|
|
|
|
|
public long? BookingId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否已转发客户 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "是否已转发客户 1-是 0-否", IsNullable = true , Length = 1 ) ]
|
|
|
|
|
public long? IsTransferUser { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后转发客户邮件时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "最后转发客户邮件时间", IsNullable = true ) ]
|
|
|
|
|
public DateTime? LstTransferUserDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后转发客户邮件结果
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "最后转发客户邮件结果", IsNullable = true , Length = 500 ) ]
|
|
|
|
|
public string? LstTransferNotes { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败", IsNullable = true , Length = 20 ) ]
|
|
|
|
|
public string? LstStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后转发客户邮件状态名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "最后转发客户邮件状态名称", IsNullable = true , Length = 50 ) ]
|
|
|
|
|
public string? LstStatusName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|