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.
203 lines
6.8 KiB
C#
203 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_cut_date_change_detail_info", "任务截止时间变更通知明细")]
|
|
public class TaskCutDateChangeDetailInfo : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// CUT任务主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "CUT任务主键", IsNullable = false)]
|
|
public long P_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 64)]
|
|
public string? MBL_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船名
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "船名", IsNullable = true, Length = 30)]
|
|
public string? VESSEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 航次
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "航次", IsNullable = true, Length = 20)]
|
|
public string? VOYNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 样单截止时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "样单截止时间", IsNullable = true)]
|
|
public DateTime? SI_CUTOFF { get; set; }
|
|
|
|
/// <summary>
|
|
/// 样单截止时间文本
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "样单截止时间文本", IsNullable = true, Length = 50)]
|
|
public string? SI_CUTOFF_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开港时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "开港时间", IsNullable = true)]
|
|
public DateTime? CY_OPEN { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开港时间文本
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "开港时间文本", IsNullable = true, Length = 50)]
|
|
public string? CY_OPEN_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截港时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "截港时间", IsNullable = true)]
|
|
public DateTime? CY_CUTOFF { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截港时间文本
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "截港时间文本", IsNullable = true, Length = 50)]
|
|
public string? CY_CUTOFF_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 舱单-入港清单截止时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "舱单-入港清单截止时间", IsNullable = true)]
|
|
public DateTime? MANIFEST_CUT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 舱单-入港清单截止时间文本
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "舱单-入港清单截止时间文本", IsNullable = true, Length = 50)]
|
|
public string? MANIFEST_CUT_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// MDGF提交截止时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "MDGF提交截止时间", IsNullable = true)]
|
|
public DateTime? MDGF_CUT { get; set; }
|
|
|
|
/// <summary>
|
|
/// MDGF提交截止时间文本
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "MDGF提交截止时间文本", IsNullable = true, Length = 50)]
|
|
public string? MDGF_CUT_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// VGM截止时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "VGM截止时间", IsNullable = true)]
|
|
public DateTime? VGM_CUT { get; set; }
|
|
|
|
/// <summary>
|
|
/// VGM截止时间文本
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "VGM截止时间文本", IsNullable = true, Length = 50)]
|
|
public string? VGM_CUT_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 海关放行截止时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "海关放行截止时间", IsNullable = true)]
|
|
public DateTime? CLOSING_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 海关放行截止时间文本
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "海关放行截止时间文本", IsNullable = true, Length = 50)]
|
|
public string? CLOSING_DATE_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)]
|
|
public long? BOOKING_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 舱位主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "舱位主键", IsNullable = true)]
|
|
public long? BOOKING_SLOT_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否已发通知 1-已发送 0-未发送
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "是否已发通知 1-已发送 0-未发送", IsNullable = true, Length = 1)]
|
|
public UInt64? IS_NOTICE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送通知时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "发送通知时间", IsNullable = true)]
|
|
public DateTime? NOTICE_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态", IsNullable = true, Length = 20)]
|
|
public string? STATUS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态名称", IsNullable = true, Length = 64)]
|
|
public string? STATUS_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 委托单位名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "委托单位名称", IsNullable = true, Length = 64)]
|
|
public string? CUSTOM_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原因
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "原因", IsNullable = true, Length = 1000)]
|
|
public string? REASON { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "", IsNullable = true, Length = 50)]
|
|
public string? CONTA_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截补料时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "截补料时间", IsNullable = true)]
|
|
public DateTime? VOUCHER_CUT_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 装货港
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "装货港", IsNullable = true, Length = 100)]
|
|
public string? LOAD_PORT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预计离港时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "预计离港时间", IsNullable = true)]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预计靠泊时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "预计靠泊时间", IsNullable = true)]
|
|
public DateTime? ETB { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |