using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
///
/// 查询船期SPOT
///
public class MSKAPISPOTScheduleRateResultShowDto
{
///
/// 主键ID
///
public long PId { get; set; }
///
/// 船期MD5
///
public string MD5 { get; set; }
///
/// 价格id, 可进一步通过API进行其他操作
///
public string priceID { get; set; }
///
/// 币别
///
public string TotalCurrency { get; set; }
///
/// 金额
///
public decimal totalAmount { get; set; }
///
/// 金额格式化
///
public string totalAmountShow { get; set; }
///
/// 是否中转
///
public bool isTransfer { get; set; }
///
/// ETD
///
public Nullable ETD { get; set; }
///
/// ETA
///
public Nullable ETA { get; set; }
///
/// 城市名(始发地)
///
public string orignCityName { get; set; }
///
/// 地点的GEO ID(始发地)
///
public string orignCarrierSiteGeoID { get; set; }
///
/// 地点的CITY GEO ID(始发地)
///
public string orignCarrierCityGeoID { get; set; }
///
/// 地点的名称(始发地)
///
public string orignLocationName { get; set; }
///
/// 省
///
public string originRegionName { get; set; }
///
/// 国家代码(始发地)
///
public string orignCountryCode { get; set; }
///
///国家名称(始发地)
///
public string originCountryName { get; set; }
///
/// 位置类型(始发地)
///
public string orignLocationType { get; set; }
///
/// 五字码(始发地)
///
public string orignUNLocationCode { get; set; }
///
/// 区代码(始发地)
///
public string orignUNRegionCode { get; set; }
///
/// 城市名(目的地)
///
public string deliveryCityName { get; set; }
///
/// 地点的GEO ID(目的地)
///
public string deliveryCarrierSiteGeoID { get; set; }
///
/// 地点的CITY GEO ID(目的地)
///
public string deliveryCarrierCityGeoID { get; set; }
///
/// 地点的名称(目的地)
///
public string deliveryLocationName { get; set; }
///
/// 省
///
public string deliveryRegionName { get; set; }
///
/// 国家代码(目的地)
///
public string deliveryCountryCode { get; set; }
///
/// 国家名称(目的地)
///
public string deliveryCountryName { get; set; }
///
/// 位置类型(目的地)
///
public string deliveryLocationType { get; set; }
///
/// 五字码(目的地)
///
public string deliveryUNLocationCode { get; set; }
///
/// 区代码(目的地)
///
public string deliveryUNRegionCode { get; set; }
///
/// IMO
///
public string vesselIMONumber { get; set; }
///
/// 航次号
///
public string carrierVesselCode { get; set; }
///
/// 运输方式
///
public string transportMode { get; set; }
///
/// 船名
///
public string vesselName { get; set; }
///
/// 航次代码
///
public string carrierDepartureVoyageNumber { get; set; }
///
/// 承运人代码(MAEU, SEAU, SEJJ, MCPU, MAEI)
///
public string vesselOperatorCarrierCode { get; set; }
///
/// 行程天数
///
public int days { get; set; }
///
/// 航程明细
///
public List Legs { get; set; }
}
public class MSKAPISPOTScheduleRateResultShowLegsDto
{
///
/// 排序值
///
public int SortNo { get; set; }
///
/// 船名
///
public string vesselName { get; set; }
///
/// 航次
///
public string VoyageNo { get; set; }
///
/// ETD
///
public Nullable ETD { get; set; }
///
/// ATD
///
public Nullable ETA { get; set; }
///
/// 起始地
///
public MSKAPISPOTScheduleRateResultShowLegsLocationDto From { get; set; }
///
/// 目的地
///
public MSKAPISPOTScheduleRateResultShowLegsLocationDto To { get; set; }
}
public class MSKAPISPOTScheduleRateResultShowLegsLocationDto
{
///
/// 定位类型 From-起始地 To-目的地
///
public string LocationType { get; set; }
///
/// 码头定位ID
///
public string SiteGeoId { get; set; }
///
/// 城市定位ID
///
public string CityGeoId { get; set; }
///
///
///
public string rkstCode { get; set; }
///
/// 城市定位ID
///
public string UnLocCode { get; set; }
///
/// 码头全称
///
public string SiteName { get; set; }
///
/// 城市名
///
public string CityName { get; set; }
///
/// 省
///
public string RegionName { get; set; }
///
/// 特别行政区或国家代码
///
public string CountryCode { get; set; }
///
/// 特别行政区或国家名称
///
public string CountryName { get; set; }
}
}