using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 货物运输计划已变更 /// [SugarTable("task_trans_plan_has_change", "货物运输计划已变更")] public class TaskTransPlanHasChange : BaseModelV2 { /// /// 任务主键ID /// [SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)] public long TASK_ID { get; set; } /// /// 船公司 /// [SugarColumn(ColumnDescription = "船公司", IsNullable = true, Length = 50)] public string? CARRIER { get; set; } /// /// ETA(预计到港时间) /// [SugarColumn(ColumnDescription = "ETA(预计到港时间)", IsNullable = true)] public DateTime? ETA { get; set; } /// /// ETD(预计离港时间) /// [SugarColumn(ColumnDescription = "ETD(预计离港时间)", IsNullable = true)] public DateTime? ETD { get; set; } /// /// 主单号 /// [SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 64)] public string? MBL_NO { get; set; } /// /// 订舱编号 /// [SugarColumn(ColumnDescription = "订舱编号", IsNullable = true, Length = 64)] public string? BOOKING_NO { get; set; } /// /// 原提单号 /// [SugarColumn(ColumnDescription = "原提单号", IsNullable = true, Length = 64)] public string? ORIG_MBL_NO { get; set; } /// /// 集装箱号 /// [SugarColumn(ColumnDescription = "集装箱号", IsNullable = true, Length = 64)] public string? CONTA_NO { get; set; } /// /// 变更原因 /// [SugarColumn(ColumnDescription = "变更原因", IsNullable = true, Length = 1000)] public string? CHANGE_REASON { get; set; } /// /// 船名 /// [SugarColumn(ColumnDescription = "船名", IsNullable = true, Length = 30)] public string? VESSEL { get; set; } /// /// 航次 /// [SugarColumn(ColumnDescription = "航次", IsNullable = true, Length = 20)] public string? VOYNO { get; set; } /// /// 装货港 /// [SugarColumn(ColumnDescription = "装货港", IsNullable = true, Length = 100)] public string? PORTLOAD { get; set; } /// /// 装货港国家 /// [SugarColumn(ColumnDescription = "装货港国家", IsNullable = true, Length = 100)] public string? PORTLOAD_COUNTRY { get; set; } /// /// 装货码头 /// [SugarColumn(ColumnDescription = "装货码头", IsNullable = true, Length = 100)] public string? PORTLOAD_TERMINAL { get; set; } /// /// 卸货港 /// [SugarColumn(ColumnDescription = "卸货港", IsNullable = true, Length = 100)] public string? PORTDISCHARGE { get; set; } /// /// 卸货港国家 /// [SugarColumn(ColumnDescription = "卸货港国家", IsNullable = true, Length = 100)] public string? PORTDISCHARGE_COUNTRY { get; set; } /// /// 卸货港码头 /// [SugarColumn(ColumnDescription = "卸货港码头", IsNullable = true, Length = 100)] public string? PORTDISCHARGE_TERMINAL { get; set; } /// /// 船旗 /// [SugarColumn(ColumnDescription = "船旗", IsNullable = true, Length = 20)] public string? SHIP_FLAG { get; set; } /// /// 订舱ID /// [SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)] public long? BOOKING_ID { get; set; } /// /// 是否已转发客户 1-是 0-否 /// [SugarColumn(ColumnDescription = "是否已转发客户 1-是 0-否", IsNullable = true, Length = 1)] public UInt64? IS_TRANSFER_USER { get; set; } /// /// 最后转发客户邮件时间 /// [SugarColumn(ColumnDescription = "最后转发客户邮件时间", IsNullable = true)] public DateTime? LST_TRANSFER_USER_DATE { get; set; } /// /// 最后转发客户邮件结果 /// [SugarColumn(ColumnDescription = "最后转发客户邮件结果", IsNullable = true, Length = 500)] public string? LST_TRANSFER_NOTES { get; set; } /// /// 最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败 /// [SugarColumn(ColumnDescription = "最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败", IsNullable = true, Length = 20)] public string? LST_STATUS { get; set; } /// /// 最后转发客户邮件状态名称 /// [SugarColumn(ColumnDescription = "最后转发客户邮件状态名称", IsNullable = true, Length = 50)] public string? LST_STATUS_NAME { get; set; } /// /// 列表批次号 /// [SugarColumn(ColumnDescription = "列表批次号", IsNullable = true, Length = 64)] public string? GROUP_BATCH_NO { get; set; } /// /// 是否列表最后项 1-是最后项 0-不是最后项 /// [SugarColumn(ColumnDescription = "是否列表最后项 1-是最后项 0-不是最后项", IsNullable = true, Length = 1)] public UInt64? IS_LAST { get; set; } } }