using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
///
/// 检索始发地、目的地城市信息结果
///
public class MSKAPISearchLocationResultDto
{
///
/// 回执代码
///
public int code { get; set; }
///
/// 回执消息
///
public string msg { get; set; }
///
/// 回执代码
///
public List data { get; set; }
}
public class MSKAPISearchLocationResultDataDto
{
///
/// 港口的国家代码
///
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; }
}
}