using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.TaskPlat.Dtos { /// /// /// public class TaskCutDateChangeShowDto { /// /// 装货港区域 NORTH_PORT-华北港口 SOUTH-华南港口 /// public string PortloadArea { get; set; } /// /// 订单ID /// public long BookingId { get; set; } /// /// 提单号 /// 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; } /// /// 原因 /// public string Reason { get; set; } /// /// 集装箱号 /// public string ContaNo { get; set; } /// /// 装货港 /// public string LoadPort { get; set; } /// /// 预计离港时间 /// public Nullable ETD { get; set; } /// /// 预计离港时间文本 /// public string ETDTxt { get; set; } /// /// 预计靠泊时间 /// public Nullable ETB { get; set; } /// /// 预计靠泊时间文本 /// public string ETBTxt { get; set; } /// /// 截补料时间 /// public Nullable VoucherCutoffTime { get; set; } /// /// 截补料时间文本 /// public string VoucherCutoffTimeTxt { get; set; } /// /// 邮件标题 /// public string EmailTitle { get; set; } /// /// 租户ID /// public long TenantId { get; set; } /// /// 租户名称 /// public string TenantCompanyName { get; set; } } }