using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 马士基点对点查询船期请求 /// public class MSKAPISearchPoint2PointScheduleDto { /// /// 用户key(取用户配置) /// public string userKey { get; set; } /// /// 用户secret /// public string userSecret { get; set; } /// /// app的key /// public string mskAppKey { get; set; } /// /// 运行环境 TEST-测试环境;PRODUCTION-生产环境 /// public string operatingEnvironment { get; set; } /// /// 起始地的GEO ID /// public string carrierCollectionOriginGeoID { get; set; } /// /// 目的地的GEO ID /// public string carrierDeliveryDestinationGeoID { get; set; } /// /// 起始地国家代码(英文) /// public string collectionOriginCountryCode { get; set; } /// /// 起始地城市名 /// public string collectionOriginCityName { get; set; } /// /// 起始地五字码 /// public string collectionOriginUNLocationCode { get; set; } /// /// 起始地区代码 /// public string collectionOriginUNRegionCode { get; set; } /// /// 目的地国家代码 二字码 /// public string deliveryDestinationCountryCode { get; set; } /// /// 目的地城市名称 /// public string deliveryDestinationCityName { get; set; } /// /// 目的都五字码 /// public string deliveryDestinationUNLocationCode { get; set; } /// /// 目的地区代码 /// public string deliveryDestinationUNRegionCode { get; set; } /// /// 承运人代码(MAEU, SEAU, SEJJ, MCPU, MAEI) /// public string vesselOperatorCarrierCode { get; set; } /// /// 货物类型代码(DRY, REEFER) /// public string cargoType { get; set; } /// /// 箱型代码 /// public string ISOEquipmentCode { get; set; } /// /// 箱重量 /// public string stuffingWeight { get; set; } /// /// 重量单位(KGS, LBS) /// public string weightMeasurementUnit { get; set; } /// /// 箱体积 /// public Nullable stuffingVolume { get; set; } /// /// 体积单位(MTQ, FTQ) /// public string volumeMeasurementUnit { get; set; } /// /// 出口服务代码(CY, SD, CFS) /// public string exportServiceMode { get; set; } /// /// 进口服务代码(CY, SD, CFS) /// public string importServiceMode { get; set; } /// /// 开始时间 /// public string startDate { get; set; } /// /// 开始时间类型(D, A) /// public string startDateType { get; set; } /// /// 请求产品信息的时间段(P1W, P2W, P3W, P4W, P5W, P6W, P7W, P8W) /// public string dateRange { get; set; } /// /// 船舶标志代号 /// public string vesselFlagCode { get; set; } } }