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