using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 任务目的港未提货未返箱明细 /// [SugarTable("task_pod_discharge_gateout_full_detail", "任务目的港未提货未返箱明细")] public class TaskPodDischargeGateoutFullDetail : BaseModelV2 { /// /// VGM任务主键 /// [SugarColumn(ColumnDescription = "VGM任务主键", 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 = 40)] public string? CTN_NO { get; set; } /// /// 收货人 /// [SugarColumn(ColumnDescription = "收货人", IsNullable = true, Length = 200)] public string? CNEE { get; set; } /// /// 卸货日期 /// [SugarColumn(ColumnDescription = "卸货日期", IsNullable = true)] public DateTime? DISCHARGE_DATE { get; set; } /// /// 卸货港 /// [SugarColumn(ColumnDescription = "卸货港", IsNullable = true, Length = 100)] public string? DISCHARGE_PORT { get; set; } /// /// 超期天数 /// [SugarColumn(ColumnDescription = "超期天数", IsNullable = true)] public int? OVERDUE_DAYS { get; set; } /// /// 当前集装箱所在地 /// [SugarColumn(ColumnDescription = "当前集装箱所在地", IsNullable = true, Length = 200)] public string? CUR_CONTA_LOCATION { get; set; } /// /// 滞留费用 /// [SugarColumn(ColumnDescription = "滞留费用", IsNullable = true, Length = 19)] public decimal? DETENTION_FEE_TILL_DATE { get; set; } /// /// 费用币别 /// [SugarColumn(ColumnDescription = "费用币别", IsNullable = true, Length = 20)] public string? CHARGE_CURRENCY { 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_NOTICE { get; set; } /// /// 消息提醒时间 /// [SugarColumn(ColumnDescription = "消息提醒时间", IsNullable = true)] public DateTime? SEND_NOTICE_DATE { get; set; } } }