using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// /// public class QueryMSKSPOTScheduleDto { /// /// 船公司主键 /// public long carrierId { get; set; } /// /// 船公司代码 /// public string carrierCode { get; set; } /// /// 起运地geoid /// public string originGeoId { get; set; } /// /// 支持的承运人代码, 目前API仅支持MAEU /// public string brandScac { get; set; } /// /// 起运地rkst代码 /// public string originRkstCode { get; set; } /// /// 起运地五子码 /// public string originUnLocCode { get; set; } /// /// 目的地geo id /// public string destinationGeoId { get; set; } /// /// 目的地rkst代码 /// public string destinationRkstCode { get; set; } /// /// 目的地五子码 /// public string destinationUnLocCode { get; set; } /// /// 箱型 /// public string containerType { get; set; } /// /// 箱量 /// public Nullable containerCount { get; set; } /// /// 箱重 /// public Nullable containerWeight { get; set; } /// /// 起运地服务模式(CY, SD) /// public string originServiceMode { get; set; } /// /// 目的地服务模式(CY, SD) /// public string destinationServiceMode { get; set; } /// /// 查询的起运日期, 格式: YYYY-MM-DD /// public string departureDate { get; set; } } }