using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { public class MSKAPISPOTSearchLocationResultDto { /// /// 回执代码 /// public int code { get; set; } /// /// 回执消息 /// public string msg { get; set; } /// /// 回执代码 /// public List data { get; set; } } public class MSKAPISPOTSearchLocationResultDataDto : QueryLocationsResultDto { /// /// 港口 geo id /// public string geoId { get; set; } /// /// 港口 rkst id, 后续的查询等请求, 官方推荐使用rkst id /// public string rkstCode { get; set; } /// /// 港口五子码 /// public string unLocCode { get; set; } /// /// 城市名 /// public string cityName { get; set; } /// /// 地区名 /// public string regionName { get; set; } /// /// 国家名 /// public string countryName { get; set; } } }