using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// MSK SPOT 订舱初始加载详情 /// public class MSKSPOTBookingInitDto { /// /// 订舱方备案编号(马士基) /// public string bookedByMaerskPartyCode { get; set; } /// /// 订舱方备案全称(马士基) /// public string bookedByCompanyName { get; set; } /// /// 订舱方联系人(马士基) /// public string bookedByCompanyContactName { get; set; } /// /// 订舱方联系邮箱(马士基) /// public string bookedByCompanyContactEmail { get; set; } /// /// 持约方备案代码(马士基) /// public string priceOwnerMaerskPartyCode { get; set; } /// /// 持约方备案全称(马士基) /// public string priceOwnerCompanyName { get; set; } /// /// 订舱方联系人(马士基) /// public string priceOwnerContactName { get; set; } /// /// 订舱方联系邮箱(马士基) /// public string priceOwnerContactEmail { get; set; } } }