|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Op.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 查询船期和运价
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MSKAPISPOTSearchScheduleRateDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户key(取用户配置)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string userKey { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户secret
|
|
|
|
|
/// </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>
|
|
|
|
|
/// 查询的起运日期, 格式: YYYY-MM-DD
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string departureDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 起运地服务模式(CY, SD)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string originServiceMode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目的地服务模式(CY, SD)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string destinationServiceMode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 起运地五子码, 起运地3个查询条件任选且只能选其一
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string originUnLocCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 起运地rkst代码, 起运地3个查询条件任选且只能选其一
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string originRkstCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///起运地geoid, 起运地3个查询条件任选且只能选其一
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string originGeoId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目的地五子码, 目的地3个查询条件任选且只能选其一
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string destinationUnLocCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目的地rkst代码, 目的地3个查询条件任选且只能选其一
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string destinationRkstCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目的地geo id, 目的地3个查询条件任选且只能选其一
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string destinationGeoId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱型 20DRY, 40DRY, 40HDRY, 45HDRY
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string containerType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<int> containerCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 集装箱重量, 单位为吨
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<int> containerWeight { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|