using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 重要任务提醒整船通知 /// [SugarTable("task_caution_notice_whole_ship", "重要任务提醒整船通知")] public class TaskCautionNoticeWholeShip : BaseModelV2 { /// /// 任务主键ID /// [SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)] public long TASK_ID { 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; } /// /// 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; } /// /// 原始值MD5 /// [SugarColumn(ColumnDescription = "原始值MD5", IsNullable = true, Length = 64)] public string? OLD_VAL_MD5 { get; set; } /// /// 统计日期 /// [SugarColumn(ColumnDescription = "统计日期", IsNullable = true)] public int? STAT_DAY { get; set; } } }