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.

131 lines
4.6 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_whole_ship", "重要任务提醒整船通知")]
public class TaskCautionNoticeWholeShip : BaseModelV2<long>
{
/// <summary>
/// 任务主键ID
/// </summary>
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
public long TASK_ID { 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>
/// 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; }
/// <summary>
/// 原始值MD5
/// </summary>
[SugarColumn(ColumnDescription = "原始值MD5", IsNullable = true, Length = 64)]
public string? OLD_VAL_MD5 { get; set; }
/// <summary>
/// 统计日期
/// </summary>
[SugarColumn(ColumnDescription = "统计日期", IsNullable = true)]
public int? STAT_DAY { get; set; }
}
}