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.

266 lines
6.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// BC解析主信息
/// </summary>
public class BCReadModel
{
/// <summary>
/// 订舱单位
/// </summary>
public string BookingParty { get; set; }
/// <summary>
/// 发货人
/// </summary>
public string Shipper { get; set; }
/// <summary>
/// 收货人
/// </summary>
public string Consigner { get; set; }
/// <summary>
/// 通知人
/// </summary>
public string NotifyParty { get; set; }
/// <summary>
/// BC更新次数
/// </summary>
public Nullable<int> BCUpdateTimes { get; set; }
/// <summary>
/// BC更新时间
/// </summary>
public Nullable<DateTime> BCUpdateTime { get; set; }
/// <summary>
/// 提单号
/// </summary>
public string BLNo { get; set; }
/// <summary>
/// 船名
/// </summary>
public string Vessel { get; set; }
/// <summary>
/// 航次
/// </summary>
public string Voyage { get; set; }
/// <summary>
/// 船公司
/// </summary>
public string ShippingCompany { get; set; }
/// <summary>
/// 收货地
/// </summary>
public string PlaceOfReceipt { get; set; }
/// <summary>
/// 发货人
/// </summary>
public string LoadingPort { get; set; }
/// <summary>
/// 截关时间
/// </summary>
public Nullable<DateTime> ClosingDate { get; set; }
/// <summary>
/// 截VGM时间
/// </summary>
public Nullable<DateTime> VGMCutOffTime { get; set; }
/// <summary>
/// ETA
/// </summary>
public Nullable<DateTime> ETA { get; set; }
/// <summary>
/// ETD
/// </summary>
public Nullable<DateTime> ETD { get; set; }
/// <summary>
/// 目的港ETA
/// </summary>
public Nullable<DateTime> PortOfDestinationETA { get; set; }
/// <summary>
/// 截单时间
/// </summary>
public Nullable<DateTime> CutSingleTime { get; set; }
/// <summary>
/// 截港时间
/// </summary>
public Nullable<DateTime> CYCutOffTime { get; set; }
/// <summary>
/// 卸货港
/// </summary>
public string DischargingPort { get; set; }
/// <summary>
/// 交货地
/// </summary>
public string DeliveryPlace { get; set; }
/// <summary>
/// 装运方式
/// </summary>
public string ShippingWay { get; set; }
/// <summary>
/// 运输条款
/// </summary>
public string ShippingTerms { get; set; }
/// <summary>
/// 港前运输形态
/// </summary>
public string PreportTransportationMode { get; set; }
/// <summary>
/// 品名
/// </summary>
public string OfTheGoods { get; set; }
/// <summary>
/// 签单地点
/// </summary>
public string SignTheBillLocation { get; set; }
/// <summary>
/// 集港码头
/// </summary>
public string CollectionTerminal { get; set; }
/// <summary>
/// 约号
/// </summary>
public string AboutNo { get; set; }
/// <summary>
/// 预付地点
/// </summary>
public string PlaceInAdvance { get; set; }
/// <summary>
/// 船代
/// </summary>
public string ShipAgency { get; set; }
/// <summary>
/// 场站
/// </summary>
public string Station { get; set; }
/// <summary>
/// 场站联系人
/// </summary>
public string StationContact { get; set; }
/// <summary>
/// 场站联系电话
/// </summary>
public string StationContactNumber { get; set; }
/// <summary>
/// 一代客服姓名
/// </summary>
public string FirstCustomerServiceName { get; set; }
/// <summary>
/// 一代客服电话
/// </summary>
public string FirstCustomerServiceNumber { get; set; }
/// <summary>
/// 一代客服邮箱
/// </summary>
public string FirstCustomerServiceEmail { get; set; }
/// <summary>
/// 备注1
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 集装箱列表
/// </summary>
public List<BCReadContaModel> Containers { get; set; }
}
/// <summary>
/// 集装箱详情
/// </summary>
public class BCReadContaModel
{
/// <summary>
/// 箱量
/// </summary>
public Nullable<Int32> CartonQuantity { get; set; }
/// <summary>
/// 箱型
/// </summary>
public string BoxPile { get; set; }
/// <summary>
/// 件数
/// </summary>
public Nullable<Int32> Pieces { get; set; }
/// <summary>
/// 尺寸
/// </summary>
public Nullable<decimal> Size { get; set; }
/// <summary>
/// 毛重
/// </summary>
public Nullable<decimal> GrossWeight { get; set; }
/// <summary>
/// 箱皮重
/// </summary>
public Nullable<decimal> TareWeight { get; set; }
/// <summary>
/// 危品票标示
/// </summary>
public string IODGT { get; set; }
/// <summary>
/// 特殊装载需求
/// </summary>
public string SpecialLoadingRequirement { get; set; }
/// <summary>
/// 提箱场站
/// </summary>
public string SuitcaseTterminal { get; set; }
/// <summary>
/// 提箱时间
/// </summary>
public Nullable<DateTime> SuitcaseTime { get; set; }
/// <summary>
/// 还箱场站
/// </summary>
public string ReturnDepot { get; set; }
}
}