using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 航线船舶截止时间调整的通知 /// [SugarTable("task_route_change_advisory", "航线船舶截止时间调整的通知")] public class TaskRouteChangeAdvisory : BaseModel { /// /// 任务主键ID /// [SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)] public long TASK_ID { 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 = 50)] public string? CARRIER { get; set; } /// /// 装货港提取 /// [SugarColumn(ColumnDescription = "装货港提取", IsNullable = true, Length = 100)] public string? READ_PORTLOAD { get; set; } /// /// 装货港代码 /// [SugarColumn(ColumnDescription = "装货港代码", IsNullable = true, Length = 5)] public string? PORTLOADID { get; set; } /// /// 装货港 /// [SugarColumn(ColumnDescription = "装货港", IsNullable = true, Length = 60)] public string? PORTLOAD { get; set; } /// /// 原ETD /// [SugarColumn(ColumnDescription = "原ETD", IsNullable = true)] public DateTime? ORIG_ETD { get; set; } /// /// MDGF提交截止时间 /// [SugarColumn(ColumnDescription = "MDGF提交截止时间", IsNullable = true)] public DateTime? MDGF_CUT_DATE { 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)] public DateTime? SI_CUT_DATE { get; set; } /// /// 码头移箱截止时间 /// [SugarColumn(ColumnDescription = "码头移箱截止时间", IsNullable = true)] public DateTime? TM_SHIFT_CUT_DATE { get; set; } /// /// 截VGM时间 /// [SugarColumn(ColumnDescription = "截VGM时间", IsNullable = true)] public DateTime? VGM_CUTOFF_TIME { get; set; } /// /// 截港/场站收据截止 /// [SugarColumn(ColumnDescription = "截港/场站收据截止", IsNullable = true)] public DateTime? CY_CUT_DATE { get; set; } /// /// 航线代码 /// [SugarColumn(ColumnDescription = "航线代码", IsNullable = true, Length = 10)] public string? ROUTE_CODE { get; set; } /// /// 邮件对应标题 /// [SugarColumn(ColumnDescription = "邮件对应标题", IsNullable = true, Length = 500)] public string? EMAIL_SUBJECT { get; set; } /// /// 周数 /// [SugarColumn(ColumnDescription = "周数", IsNullable = true)] public int? WEEK { get; set; } /// /// 同一航次订单总数量 /// [SugarColumn(ColumnDescription = "同一航次订单总数量", IsNullable = true)] public int? BOOKING_ORDER_TOTAL { get; set; } /// /// 同一航次订单转发成功数量 /// [SugarColumn(ColumnDescription = "同一航次订单转发成功数量", IsNullable = true)] public int? BOOKING_ORDER_SUCC { get; set; } /// /// 同一航次订单转发失败数量 /// [SugarColumn(ColumnDescription = "同一航次订单转发失败数量", IsNullable = true)] public int? BOOKING_ORDER_FAILURE { get; set; } } }