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