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.
57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public class QueryLocationsResultDto
|
|
{
|
|
/// <summary>
|
|
/// 港口的国家代码
|
|
/// </summary>
|
|
public string countryCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 国家名称
|
|
/// </summary>
|
|
public string countryName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 城市名
|
|
/// </summary>
|
|
public string cityName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地点类型
|
|
/// </summary>
|
|
public string locationType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地点名名
|
|
/// </summary>
|
|
public string locationName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地点id
|
|
/// </summary>
|
|
public string carrierGeoID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 港口五子码, 在订舱等业务时,港口信息一般填写这个
|
|
/// </summary>
|
|
public string UNLocationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 区域代码
|
|
/// </summary>
|
|
public string UNRegionCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 区域名称
|
|
/// </summary>
|
|
public string UNRegionName { get; set; }
|
|
}
|
|
}
|