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.
60 lines
1.4 KiB
C#
60 lines
1.4 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 回执代码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 回执消息
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 回执代码
|
|
/// </summary>
|
|
public List<MSKAPISPOTSearchLocationResultDataDto> data { get; set; }
|
|
}
|
|
|
|
public class MSKAPISPOTSearchLocationResultDataDto : QueryLocationsResultDto
|
|
{
|
|
/// <summary>
|
|
/// 港口 geo id
|
|
/// </summary>
|
|
public string geoId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 港口 rkst id, 后续的查询等请求, 官方推荐使用rkst id
|
|
/// </summary>
|
|
public string rkstCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 港口五子码
|
|
/// </summary>
|
|
public string unLocCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 城市名
|
|
/// </summary>
|
|
public string cityName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地区名
|
|
/// </summary>
|
|
public string regionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 国家名
|
|
/// </summary>
|
|
public string countryName { get; set; }
|
|
}
|
|
}
|