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.
BookingHeChuan/Myshipping.Application/Service/BookingOrder/Dto/QueryShipSailingScheduleDto.cs

155 lines
4.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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