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