using Myshipping.Application.Entity; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; 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; } } }