using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 订舱确认结果
///
public class TaskBCStoreResultInfo
{
///
/// 单号
///
[JsonPropertyName("bno")]
public string BNo { get; set; }
///
/// 船名
///
[JsonPropertyName("CM")]
public string Vessel { get; set; }
///
/// 首程航次
///
[JsonPropertyName("HC1")]
public string Voyno { get; set; }
///
/// 二程航次
///
[JsonPropertyName("HC2")]
public string Voyno2 { get; set; }
///
/// 三程航次
///
[JsonPropertyName("HC3")]
public string Voyno3 { get; set; }
///
/// VGM时间
///
[JsonPropertyName("VGMTIME")]
public string VGMTime { get; set; }
///
/// ETD
///
[JsonPropertyName("YJKHSJ")]
public string ETD { get; set; }
///
/// 装货截关时间
///
[JsonPropertyName("ZHQGSJ")]
public string ClosingDate { get; set; }
///
/// 湿度
///
[JsonPropertyName("humidity")]
public string Humidity { get; set; }
///
/// 最低温度
///
[JsonPropertyName("minimum_temperature")]
public string TempMin { get; set; }
///
/// 最高温度
///
[JsonPropertyName("maximum_temperature")]
public string TempMax { get; set; }
///
/// 中转温度
///
[JsonPropertyName("transport_temperature")]
public string TempTransport { get; set; }
///
/// 卸货港英文名称
///
[JsonPropertyName("XHG")]
public string PortDischargeEName { get; set; }
///
/// 集装箱
///
[JsonPropertyName("XXXL")]
public string CntrTotal { get; set; }
///
/// 报价号
///
[JsonPropertyName("BJH")]
public string BJH { get; set; }
///
/// 服务合同号
///
[JsonPropertyName("FWHT")]
public string FWHT { get; set; }
///
/// 通风立方米
///
[JsonPropertyName("ventilation_cubic_meter")]
public string VentilationCubicMeter { get; set; }
///
/// 客人参考号
///
[JsonPropertyName("guest_reference_number")]
public string GuestReferenceNumber { get; set; }
///
/// 最终交货地
///
[JsonPropertyName("ZZJHD")]
public string ZZJHD { get; set; }
}
}