using Myshipping.Application.Entity; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 任务截止时间变更明细 /// [SugarTable("task_cut_date_change_detail_info")] [Description(" 任务截止时间变更明细")] public class TaskCutDateChangeDetailInfo : TaskManageDbEntity { /// /// VGM任务主键 /// public string P_ID { get; set; } /// /// 主单号 /// public string MBL_NO { get; set; } /// /// 船名 /// public string VESSEL { get; set; } /// /// 航次 /// public string VOYNO { get; set; } /// /// 样单截止时间 /// public Nullable SI_CUTOFF { get; set; } /// /// 样单截止时间文本 /// public string SI_CUTOFF_TXT { get; set; } /// /// 开港时间 /// public Nullable CY_OPEN { get; set; } /// /// 开港时间文本 /// public string CY_OPEN_TXT { get; set; } /// /// 截港时间 /// public Nullable CY_CUTOFF { get; set; } /// /// 截港时间文本 /// public string CY_CUTOFF_TXT { get; set; } /// /// 舱单-入港清单截止时间 /// public Nullable MANIFEST_CUT { get; set; } /// /// 舱单-入港清单截止时间文本 /// public string MANIFEST_CUT_TXT { get; set; } /// /// MDGF提交截止时间 /// public Nullable MDGF_CUT { get; set; } /// /// MDGF提交截止时间文本 /// public string MDGF_CUT_TXT { get; set; } /// /// VGM截止时间 /// public Nullable VGM_CUT { get; set; } /// /// VGM截止时间文本 /// public string VGM_CUT_TXT { get; set; } /// /// 海关放行截止时间 /// public Nullable CLOSING_DATE { get; set; } /// /// 海关放行截止时间文本 /// public string CLOSING_DATE_TXT { get; set; } /// /// 订舱ID /// public Nullable BOOKING_ID { get; set; } /// /// 舱位主键 /// public Nullable BOOKING_SLOT_ID { get; set; } /// /// 是否已发通知 1-已发送 0-未发送 /// public bool IS_NOTICE { get; set; } /// /// 发送通知时间 /// public Nullable NOTICE_DATE { get; set; } /// /// 状态 /// public string STATUS { get; set; } /// /// 状态名称 /// public string STATUS_NAME { get; set; } /// /// 委托单位名称 /// public string CUSTOM_NAME { get; set; } /// /// 原因 /// public string REASON { get; set; } /// /// 集装箱号 /// public string CONTA_NO { get; set; } /// /// 截补料时间 /// public Nullable VOUCHER_CUT_DATE { get; set; } /// /// 装货港 /// public string LOAD_PORT { get; set; } /// /// 预计到港 /// public Nullable ETD { get; set; } /// /// 预计靠泊 /// public Nullable ETB { get; set; } } }