You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
C#
55 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Dtos
|
|
{
|
|
/// <summary>
|
|
/// MSK SPOT 订舱初始加载详情
|
|
/// </summary>
|
|
public class MSKSPOTBookingInitDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱方备案编号(马士基)
|
|
/// </summary>
|
|
public string bookedByMaerskPartyCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱方备案全称(马士基)
|
|
/// </summary>
|
|
public string bookedByCompanyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱方联系人(马士基)
|
|
/// </summary>
|
|
public string bookedByCompanyContactName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱方联系邮箱(马士基)
|
|
/// </summary>
|
|
public string bookedByCompanyContactEmail { get; set; }
|
|
|
|
/// <summary>
|
|
/// 持约方备案代码(马士基)
|
|
/// </summary>
|
|
public string priceOwnerMaerskPartyCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 持约方备案全称(马士基)
|
|
/// </summary>
|
|
public string priceOwnerCompanyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱方联系人(马士基)
|
|
/// </summary>
|
|
public string priceOwnerContactName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱方联系邮箱(马士基)
|
|
/// </summary>
|
|
public string priceOwnerContactEmail { get; set; }
|
|
}
|
|
}
|