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