using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 重要任务提醒 /// [SugarTable("task_caution_notice", "重要任务提醒")] public class TaskCautionNotice : BaseModelV2 { /// /// 任务主键ID /// [SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)] public long TASK_ID { get; set; } /// /// 来源系统 /// [SugarColumn(ColumnDescription = "来源系统", IsNullable = true, Length = 64)] public string? SOURCE_SYSTEM { get; set; } /// /// 来源业务类型 /// [SugarColumn(ColumnDescription = "来源业务类型", IsNullable = true, Length = 30)] public string? SOURCE_BUSI_TYPE { get; set; } /// /// 来源业务类型名称 /// [SugarColumn(ColumnDescription = "来源业务类型名称", IsNullable = true, Length = 50)] public string? SOURCE_BUSI_TYPENAME { get; set; } /// /// 通知内容 /// [SugarColumn(ColumnDescription = "通知内容", IsNullable = true, Length = 1000)] public string? NOTIFY_CONTENT { get; set; } /// /// 提单号 /// [SugarColumn(ColumnDescription = "提单号", IsNullable = true, Length = 64)] public string? MBL_NO { get; set; } /// /// 船公司 /// [SugarColumn(ColumnDescription = "船公司", IsNullable = true, Length = 50)] public string? CARRIER { get; set; } /// /// 是否计费周差异 1-是 0-否 /// [SugarColumn(ColumnDescription = "是否计费周差异 1-是 0-否", IsNullable = true, Length = 1)] public UInt64? IS_WEEK_DIFF { get; set; } /// /// 是否计费日差异 1-是 0-否 /// [SugarColumn(ColumnDescription = "是否计费日差异 1-是 0-否", IsNullable = true, Length = 1)] public UInt64? IS_PRICE_DATE_DIFF { get; set; } /// /// 是否转为中转 1-是 0-否 /// [SugarColumn(ColumnDescription = "是否转为中转 1-是 0-否", IsNullable = true, Length = 1)] public UInt64? IS_TRANSFER { get; set; } /// /// 是否船名变化 1-是 0-否 /// [SugarColumn(ColumnDescription = "是否船名变化 1-是 0-否", IsNullable = true, Length = 1)] public UInt64? IS_VESSEL_CHANGE { get; set; } /// /// 是否截止时间提前 1-是 0-否 /// [SugarColumn(ColumnDescription = "是否截止时间提前 1-是 0-否", IsNullable = true, Length = 1)] public UInt64? IS_CUT_DATE_ADVANCED { get; set; } /// /// 任务ID /// [SugarColumn(ColumnDescription = "任务ID", IsNullable = false)] public long SOURCE_TASK_ID { get; set; } /// /// 订舱ID /// [SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)] public long? BOOKING_ID { get; set; } /// /// 舱位ID /// [SugarColumn(ColumnDescription = "舱位ID", IsNullable = true)] public long? BOOKING_SLOT_ID { get; set; } /// /// 原始值 /// [SugarColumn(ColumnDescription = "原始值", IsNullable = true, Length = 500)] public string? OLD_VAL { get; set; } /// /// 修改值 /// [SugarColumn(ColumnDescription = "修改值", IsNullable = true, Length = 500)] public string? NEW_VAL { get; set; } /// /// 通知差异类型 WeekAt-计费周差异;PriceCalcDate-计费日期差异;ChangeTransfer-直达转为中转;ChangeVesselVoyno-船名航次变化;VGMCutDateAdvanced-VGM截止时间提前;SICutDateAdvanced-SI截止时间提前 /// [SugarColumn(ColumnDescription = "通知差异类型 WeekAt-计费周差异;PriceCalcDate-计费日期差异;ChangeTransfer-直达转为中转;ChangeVesselVoyno-船名航次变化;VGMCutDateAdvanced-VGM截止时间提前;SICutDateAdvanced-SI截止时间提前", IsNullable = true, Length = 30)] public string? CAUTION_NOTICE_TYPE { get; set; } /// /// VGM截止时间原始值 /// [SugarColumn(ColumnDescription = "VGM截止时间原始值", IsNullable = true, Length = 50)] public string? VGM_CUT_OLD_VAL { get; set; } /// /// VGM截止时间修改值 /// [SugarColumn(ColumnDescription = "VGM截止时间修改值", IsNullable = true, Length = 50)] public string? VGM_CUT_NEW_VAL { get; set; } /// /// SI截止时间原始值 /// [SugarColumn(ColumnDescription = "SI截止时间原始值", IsNullable = true, Length = 50)] public string? SI_CUT_OLD_VAL { get; set; } /// /// SI截止时间修改值 /// [SugarColumn(ColumnDescription = "SI截止时间修改值", IsNullable = true, Length = 50)] public string? SI_CUT_NEW_VAL { get; set; } /// /// 直达变中转原值 /// [SugarColumn(ColumnDescription = "直达变中转原值", IsNullable = true, Length = 20)] public string? DIRECT_TO_TRANS_OLD_VAL { get; set; } /// /// 直达变中转修改值 /// [SugarColumn(ColumnDescription = "直达变中转修改值", IsNullable = true, Length = 20)] public string? DIRECT_TO_TRANS_NEW_VAL { get; set; } /// /// 船名原始值 /// [SugarColumn(ColumnDescription = "船名原始值", IsNullable = true, Length = 60)] public string? VESSEL_OLD_VAL { get; set; } /// /// 船名修改值 /// [SugarColumn(ColumnDescription = "船名修改值", IsNullable = true, Length = 60)] public string? VESSEL_NEW_VAL { get; set; } /// /// 航次原始值 /// [SugarColumn(ColumnDescription = "航次原始值", IsNullable = true, Length = 10)] public string? VOYNO_OLD_VAL { get; set; } /// /// 航次修改值 /// [SugarColumn(ColumnDescription = "航次修改值", IsNullable = true, Length = 10)] public string? VOYNO_NEW_VAL { get; set; } } }