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.
BookingHeChuan/Myshipping.Application/Service/BookingOrder/Dto/MSKSPOT/MSKAPISPOTSearchLocationDto.cs

60 lines
1.4 KiB
C#

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