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.

145 lines
3.8 KiB
C#

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 QueryMSKSPOTShipDateDto
{
/// <summary>
/// 船公司主键
/// </summary>
public long carrierId { get; set; }
/// <summary>
/// 船公司代码
/// </summary>
public long carrierCode { get; set; }
/// <summary>
/// 起始地的GEO ID
/// </summary>
public string carrierCollectionOriginGeoID { get; set; }
/// <summary>
/// 目的地的GEO ID
/// </summary>
public string carrierDeliveryDestinationGeoID { get; set; }
/// <summary>
/// 起始地国家代码(英文)
/// </summary>
public string collectionOriginCountryCode { get; set; }
/// <summary>
/// 起始地城市名
/// </summary>
public string collectionOriginCityName { get; set; }
/// <summary>
/// 起始地五字码
/// </summary>
public string collectionOriginUNLocationCode { get; set; }
/// <summary>
/// 起始地区代码
/// </summary>
public string collectionOriginUNRegionCode { get; set; }
/// <summary>
/// 目的地国家代码 二字码
/// </summary>
public string deliveryDestinationCountryCode { get; set; }
/// <summary>
/// 目的地城市名称
/// </summary>
public string deliveryDestinationCityName { get; set; }
/// <summary>
/// 目的都五字码
/// </summary>
public string deliveryDestinationUNLocationCode { get; set; }
/// <summary>
/// 目的地区代码
/// </summary>
public string deliveryDestinationUNRegionCode { get; set; }
/// <summary>
/// 承运人代码MAEU, SEAU, SEJJ, MCPU, MAEI
/// </summary>
public string vesselOperatorCarrierCode { get; set; }
/// <summary>
/// 货物类型代码DRY, REEFER
/// </summary>
public string cargoType { get; set; }
/// <summary>
/// 箱型代码
/// </summary>
public string ISOEquipmentCode { get; set; }
/// <summary>
/// 箱数量
/// </summary>
public Nullable<int> ISOEquipmentNum { get; set; }
/// <summary>
/// 箱重量
/// </summary>
public Nullable<int> stuffingWeight { get; set; }
/// <summary>
/// 重量单位KGS, LBS
/// </summary>
public string weightMeasurementUnit { get; set; }
/// <summary>
/// 箱体积
/// </summary>
public int stuffingVolume { get; set; }
/// <summary>
/// 体积单位MTQ, FTQ
/// </summary>
public string volumeMeasurementUnit { get; set; }
/// <summary>
/// 出口服务代码CY, SD, CFS
/// </summary>
public string exportServiceMode { get; set; }
/// <summary>
/// 进口服务代码CY, SD, CFS
/// </summary>
public string importServiceMode { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public string startDate { get; set; }
/// <summary>
/// 开始时间类型D, A
/// </summary>
public string startDateType { get; set; }
/// <summary>
/// 请求产品信息的时间段P1W, P2W, P3W, P4W, P5W, P6W, P7W, P8W
/// </summary>
public string dateRange { get; set; }
/// <summary>
/// 船舶标志代号
/// </summary>
public string vesselFlagCode { get; set; }
}
}