using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// /// public class TaskCutDateChangeShowDto { /// /// 提单号 /// public string MBLNo { get; set; } /// /// 船名 /// public string Vessel { get; set; } /// /// 航次 /// public string VoyNo { get; set; } /// /// 样单截止日期 /// public Nullable SICutDate { get; set; } /// /// 样单截止日期文本 /// public string SICutDateTxt { get; set; } /// /// 开港时间 /// public Nullable CYOpenDate { get; set; } /// /// 开港时间文本 /// public string CYOpenDateTxt { get; set; } /// /// 截港时间 /// public Nullable CYCutoffTime { get; set; } /// /// 截港时间文本 /// public string CYCutoffTimeTxt { get; set; } /// /// 舱单截止时间(舱单-入港清单截止时间) /// public Nullable ManifestCutDate { get; set; } /// /// 舱单截止时间文本(舱单-入港清单截止时间) /// public string ManifestCutDateTxt { get; set; } /// /// MDGF提交截止时间(MDGF提交截止时间-危险品货物) /// public Nullable MDGFCutDate { get; set; } /// /// MDGF提交截止时间文本(MDGF提交截止时间-危险品货物) /// public string MDGFCutDateTxt { get; set; } /// /// 截VGM时间(船代VGM截止时间) /// public Nullable VGMCutoffTime { get; set; } /// /// 截VGM时间文本(船代VGM截止时间) /// public string VGMCutoffTimeTxt { get; set; } /// /// 截关时间 海关放行截止时间(Customs Clearance Deadline) /// public Nullable ClosingDate { get; set; } /// /// 截关时间文本 海关放行截止时间(Customs Clearance Deadline) /// public string ClosingDateTxt { get; set; } /// /// 船公司 /// public string Carrier { get; set; } /// /// 通知接收时间 /// public Nullable NoticeDate { get; set; } } }