using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 查询船期回执
///
public class SearchShipSailingScheduleResultDto
{
///
/// 产品id
///
public string carrierProductId { get; set; }
///
/// 产品序号
///
public string carrierProductSequenceId { get; set; }
///
/// ETD
///
public Nullable ETD { get; set; }
///
/// ATD
///
public Nullable ATD { get; set; }
///
/// 城市名(始发地)
///
public string orignCityName { get; set; }
///
/// 地点的GEO ID(始发地)
///
public string orignCarrierSiteGeoID { get; set; }
///
/// 地点的名称(始发地)
///
public string orignLocationName { get; set; }
///
/// 国家代码(始发地)
///
public string orignCountryCode { 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; }
///
/// 地点的名称(目的地)
///
public string deliveryLocationName { get; set; }
///
/// 国家代码(目的地)
///
public string deliveryCountryCode { 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 transportLegs { get; set; }
}
}