using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 舱位库存 /// public class BookingSlotStockDto { /// /// 船名 /// public string Vessel { get; set; } /// /// 航次号 /// public string Voyno { get; set; } /// /// 合约号 /// public string ContractNo { get; set; } /// /// 订舱方式 CONTRACT_ORDER-合约订舱;SPOT_ORDER-SPOT订舱 /// public string BookingSlotType { get; set; } /// /// 订舱方式名称 CONTRACT_ORDER-合约订舱;SPOT_ORDER-SPOT订舱 /// public string BookingSlotTypeName { get; set; } /// /// 订舱抬头 /// public string BookingParty { get; set; } /// /// 船公司主键 /// public long CarrierId { get; set; } /// /// 船公司代号 /// public string CarrierCode { get; set; } /// /// 船公司 /// public string Carrier { get; set; } /// /// 预计开船日期 /// public Nullable ETD { get; set; } /// /// 预计到港日期 /// public Nullable ETA { get; set; } /// /// 收货地 /// public string PlaceReceipt { get; set; } /// /// 交货地 /// public string PlaceDelivery { get; set; } /// /// 装货港代码 /// public string PortLoadId { get; set; } /// /// 装货港 /// public string PortLoad { get; set; } /// /// 卸货港代码 /// public string PortDischargeId { get; set; } /// /// 卸货港 /// public string PortDischarge { get; set; } /// /// 卸货港国家代码 /// public string PortDischargeCountryCode { get; set; } /// /// 卸货港国家名称 /// public string PortDischargeCountry { get; set; } /// /// 航线代码(船公司) /// public string LaneCode { get; set; } /// /// 航线名称(船公司) /// public string LaneName { get; set; } /// /// 所在周数 /// public Nullable WeekAt { get; set; } /// /// 箱型箱量 /// public string CtnStat { get; set; } /// /// 使用箱型箱量 /// public string UseCtnStat { get; set; } /// /// 剩余箱型箱量 /// public string RemainCtnStat { get; set; } /// /// 总舱位数 /// public int TotalOrders { get; set; } /// /// 使用舱位数 /// public int UseNum { get; set; } /// /// 取消舱位数 /// public int CancelNum { get; set; } /// /// 总箱数 /// public int TotalCtns { get; set; } /// /// 使用箱数 /// public int UseCtnsNum { get; set; } /// /// 剩余箱数 /// public int RemainCtnsNum { get; set; } } }