using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 检索船期请求 /// public class QueryShipSailingScheduleDto { /// /// 船公司代码 /// public string carrierCode { get; set; } /// /// 船公司主键 /// public long carrierId { 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 collectionOriginCountryName { get; set; } /// /// 起始地五字码 /// public string collectionOriginUNLocationCode { get; set; } /// /// 起始地区代码 /// public string collectionOriginUNRegionCode { get; set; } /// /// 起始地区名称 /// public string collectionOriginUNRegionName { get; set; } /// /// 目的地国家代码 二字码 /// public string deliveryDestinationCountryCode { get; set; } /// /// 目的地城市名称 /// public string deliveryDestinationCityName { get; set; } /// /// 目的地国家名称 二字码 /// public string deliveryDestinationCountryName { get; set; } /// /// 目的都五字码 /// public string deliveryDestinationUNLocationCode { get; set; } /// /// 目的地区代码 /// public string deliveryDestinationUNRegionCode { get; set; } /// /// 目的地区名称 /// public string deliveryDestinationUNRegionName { 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 int 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; } } }