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.
45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// MSK SPOT 订舱初始加载详情
|
|
/// </summary>
|
|
public class MSKSPOTBookingInitDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱方备案编号(马士基)
|
|
/// </summary>
|
|
public string bookedMaerskByPartyCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱方备案全称(马士基)
|
|
/// </summary>
|
|
public string bookedByCompanyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱方联系人(马士基)
|
|
/// </summary>
|
|
public string bookedByPartyContactName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱方联系邮箱(马士基)
|
|
/// </summary>
|
|
public string bookedByPartyContactEmail { get; set; }
|
|
|
|
/// <summary>
|
|
/// 持约方备案代码(马士基)
|
|
/// </summary>
|
|
public string priceOwnerMaerskPartyCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 持约方备案全称(马士基)
|
|
/// </summary>
|
|
public string priceOwnerCompanyName { get; set; }
|
|
}
|
|
}
|