using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// VGM回执 /// public class TaskManageOrderVGMInfo { /// /// 主单号 /// public string MBlNo { get; set; } /// /// 船公司 /// public string Carrier { get; set; } /// /// 船名 /// public string Vessel { get; set; } /// /// 航次 /// public string Voyno { get; set; } /// /// 装货港 /// public string PortLoad { get; set; } /// /// VGM最晚提交时间 /// public Nullable VGMSubmissionDeadLine { get; set; } /// /// 参考号 /// public string BookedByReference { get; set; } /// /// 箱型箱量 /// public string CtnStat { get; set; } /// /// 通知接收时间 /// public Nullable NoticeDate { get; set; } /// /// 集装箱明细 /// public List CtnList { get; set; } } /// /// VGM回执箱信息 /// public class TaskManageOrderVGMCtnInfo { /// /// 箱号 /// public string CntrNo { get; set; } /// /// VGM重量 /// public Nullable VGMWeight { get; set; } /// /// VGM重量单位 /// public string VGMWeightUnit { get; set; } /// /// VGM称重方式 /// public string VGMWeightMethod { get; set; } } }