using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 查询地点 /// public class MSKAPISPOTSearchLocationDto { /// /// 请求接口账户KEY /// public string userKey { get; set; } /// /// 请求接口账户密钥 /// public string userSecret { get; set; } /// /// 运行环境(TEST, PRODUCTION) /// public string operatingEnvironment { get; set; } /// /// 马士基 SPOT API 的key /// public string spot_api_key { get; set; } /// /// 支持的承运人代码, 目前API仅支持MAEU /// public string brandScac { get; set; } /// /// 港口或城市名 /// public string originPrefix { get; set; } /// /// 港口地点 geo id /// public string originGeoId { get; set; } /// /// 港口地点 rkst id /// public string originRkstCode { get; set; } /// /// 港口地点 un id /// public string originUnLocCode { get; set; } } }