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.
65 lines
1.5 KiB
C#
65 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public class COSCOSearchLocationResultDto
|
|
{
|
|
/// <summary>
|
|
/// 回执代码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 回执消息
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 回执代码
|
|
/// </summary>
|
|
public List<COSCOSearchLocationResultDataDto> data { get; set; }
|
|
}
|
|
|
|
public class COSCOSearchLocationResultDataDto
|
|
{
|
|
/// <summary>
|
|
/// 到门服务列表
|
|
/// </summary>
|
|
public List<object> toDoorServices { get; set; }
|
|
|
|
/// <summary>
|
|
/// 网站内部定义的港口id
|
|
/// </summary>
|
|
public Nullable<long> id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 网站定义的港口代码
|
|
/// </summary>
|
|
public string officeCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标准城市id
|
|
/// </summary>
|
|
public Nullable<long> standardCityID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父级城市id
|
|
/// </summary>
|
|
public Nullable<long> parentCityID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 城市字符串id, 不是一个uuid
|
|
/// </summary>
|
|
public string cityUUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 城市名
|
|
/// </summary>
|
|
public string cityName { get; set; }
|
|
}
|
|
}
|