using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 任务截止时间变更通知明细 /// [SugarTable("task_cut_date_change_detail_info", "任务截止时间变更通知明细")] public class TaskCutDateChangeDetailInfo : BaseModelV2 { /// /// CUT任务主键 /// [SugarColumn(ColumnDescription = "CUT任务主键", IsNullable = false)] public long P_ID { get; set; } /// /// 主单号 /// [SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 64)] public string? MBL_NO { 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)] public DateTime? SI_CUTOFF { get; set; } /// /// 样单截止时间文本 /// [SugarColumn(ColumnDescription = "样单截止时间文本", IsNullable = true, Length = 50)] public string? SI_CUTOFF_TXT { get; set; } /// /// 开港时间 /// [SugarColumn(ColumnDescription = "开港时间", IsNullable = true)] public DateTime? CY_OPEN { get; set; } /// /// 开港时间文本 /// [SugarColumn(ColumnDescription = "开港时间文本", IsNullable = true, Length = 50)] public string? CY_OPEN_TXT { get; set; } /// /// 截港时间 /// [SugarColumn(ColumnDescription = "截港时间", IsNullable = true)] public DateTime? CY_CUTOFF { get; set; } /// /// 截港时间文本 /// [SugarColumn(ColumnDescription = "截港时间文本", IsNullable = true, Length = 50)] public string? CY_CUTOFF_TXT { get; set; } /// /// 舱单-入港清单截止时间 /// [SugarColumn(ColumnDescription = "舱单-入港清单截止时间", IsNullable = true)] public DateTime? MANIFEST_CUT { get; set; } /// /// 舱单-入港清单截止时间文本 /// [SugarColumn(ColumnDescription = "舱单-入港清单截止时间文本", IsNullable = true, Length = 50)] public string? MANIFEST_CUT_TXT { get; set; } /// /// MDGF提交截止时间 /// [SugarColumn(ColumnDescription = "MDGF提交截止时间", IsNullable = true)] public DateTime? MDGF_CUT { get; set; } /// /// MDGF提交截止时间文本 /// [SugarColumn(ColumnDescription = "MDGF提交截止时间文本", IsNullable = true, Length = 50)] public string? MDGF_CUT_TXT { get; set; } /// /// VGM截止时间 /// [SugarColumn(ColumnDescription = "VGM截止时间", IsNullable = true)] public DateTime? VGM_CUT { get; set; } /// /// VGM截止时间文本 /// [SugarColumn(ColumnDescription = "VGM截止时间文本", IsNullable = true, Length = 50)] public string? VGM_CUT_TXT { get; set; } /// /// 海关放行截止时间 /// [SugarColumn(ColumnDescription = "海关放行截止时间", IsNullable = true)] public DateTime? CLOSING_DATE { get; set; } /// /// 海关放行截止时间文本 /// [SugarColumn(ColumnDescription = "海关放行截止时间文本", IsNullable = true, Length = 50)] public string? CLOSING_DATE_TXT { get; set; } /// /// 订舱ID /// [SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)] public long? BOOKING_ID { get; set; } /// /// 舱位主键 /// [SugarColumn(ColumnDescription = "舱位主键", IsNullable = true)] public long? BOOKING_SLOT_ID { get; set; } /// /// 是否已发通知 1-已发送 0-未发送 /// [SugarColumn(ColumnDescription = "是否已发通知 1-已发送 0-未发送", IsNullable = true, Length = 1)] public UInt64? IS_NOTICE { get; set; } /// /// 发送通知时间 /// [SugarColumn(ColumnDescription = "发送通知时间", IsNullable = true)] public DateTime? NOTICE_DATE { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", IsNullable = true, Length = 20)] public string? STATUS { get; set; } /// /// 状态名称 /// [SugarColumn(ColumnDescription = "状态名称", IsNullable = true, Length = 64)] public string? STATUS_NAME { get; set; } /// /// 委托单位名称 /// [SugarColumn(ColumnDescription = "委托单位名称", IsNullable = true, Length = 64)] public string? CUSTOM_NAME { get; set; } /// /// 原因 /// [SugarColumn(ColumnDescription = "原因", IsNullable = true, Length = 1000)] public string? REASON { get; set; } /// /// /// [SugarColumn(ColumnDescription = "", IsNullable = true, Length = 50)] public string? CONTA_NO { get; set; } /// /// 截补料时间 /// [SugarColumn(ColumnDescription = "截补料时间", IsNullable = true)] public DateTime? VOUCHER_CUT_DATE { get; set; } /// /// 装货港 /// [SugarColumn(ColumnDescription = "装货港", IsNullable = true, Length = 100)] public string? LOAD_PORT { get; set; } /// /// 预计离港时间 /// [SugarColumn(ColumnDescription = "预计离港时间", IsNullable = true)] public DateTime? ETD { get; set; } /// /// 预计靠泊时间 /// [SugarColumn(ColumnDescription = "预计靠泊时间", IsNullable = true)] public DateTime? ETB { get; set; } } }