using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// BC解析主信息 /// public class BCReadModel { /// /// 订舱单位 /// public string BookingParty { get; set; } /// /// 发货人 /// public string Shipper { get; set; } /// /// 收货人 /// public string Consigner { get; set; } /// /// 通知人 /// public string NotifyParty { get; set; } /// /// BC更新次数 /// public Nullable BCUpdateTimes { get; set; } /// /// BC更新时间 /// public Nullable BCUpdateTime { get; set; } /// /// 提单号 /// public string BLNo { get; set; } /// /// 船名 /// public string Vessel { get; set; } /// /// 航次 /// public string Voyage { get; set; } /// /// 船公司 /// public string ShippingCompany { get; set; } /// /// 收货地 /// public string PlaceOfReceipt { get; set; } /// /// 发货人 /// public string LoadingPort { get; set; } /// /// 截关时间 /// public Nullable ClosingDate { get; set; } /// /// 截VGM时间 /// public Nullable VGMCutOffTime { get; set; } /// /// ETA /// public Nullable ETA { get; set; } /// /// ETD /// public Nullable ETD { get; set; } /// /// 目的港ETA /// public Nullable PortOfDestinationETA { get; set; } /// /// 截单时间 /// public Nullable CutSingleTime { get; set; } /// /// 截港时间 /// public Nullable CYCutOffTime { get; set; } /// /// 卸货港 /// public string DischargingPort { get; set; } /// /// 交货地 /// public string DeliveryPlace { get; set; } /// /// 装运方式 /// public string ShippingWay { get; set; } /// /// 运输条款 /// public string ShippingTerms { get; set; } /// /// 港前运输形态 /// public string PreportTransportationMode { get; set; } /// /// 品名 /// public string OfTheGoods { get; set; } /// /// 签单地点 /// public string SignTheBillLocation { get; set; } /// /// 集港码头 /// public string CollectionTerminal { get; set; } /// /// 约号 /// public string AboutNo { get; set; } /// /// 预付地点 /// public string PlaceInAdvance { get; set; } /// /// 船代 /// public string ShipAgency { get; set; } /// /// 场站 /// public string Station { get; set; } /// /// 场站联系人 /// public string StationContact { get; set; } /// /// 场站联系电话 /// public string StationContactNumber { get; set; } /// /// 一代客服姓名 /// public string FirstCustomerServiceName { get; set; } /// /// 一代客服电话 /// public string FirstCustomerServiceNumber { get; set; } /// /// 一代客服邮箱 /// public string FirstCustomerServiceEmail { get; set; } /// /// 备注1 /// public string Remark { get; set; } /// /// 集装箱列表 /// public List Containers { get; set; } } /// /// 集装箱详情 /// public class BCReadContaModel { /// /// 箱量 /// public Nullable CartonQuantity { get; set; } /// /// 箱型 /// public string BoxPile { get; set; } /// /// 件数 /// public Nullable Pieces { get; set; } /// /// 尺寸 /// public Nullable Size { get; set; } /// /// 毛重 /// public Nullable GrossWeight { get; set; } /// /// 箱皮重 /// public Nullable TareWeight { get; set; } /// /// 危品票标示 /// public string IODGT { get; set; } /// /// 特殊装载需求 /// public string SpecialLoadingRequirement { get; set; } /// /// 提箱场站 /// public string SuitcaseTterminal { get; set; } /// /// 提箱时间 /// public Nullable SuitcaseTime { get; set; } /// /// 还箱场站 /// public string ReturnDepot { get; set; } } }