using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service
{
public class SIFeedBackCompareDto
{
///
/// 提单号
///
public string MblNo { get; set; }
///
/// 船公司
///
public string Carrier { get; set; }
///
/// 通知时间
///
public Nullable NoticeDate { get; set; }
///
/// 发货人
///
public string Shipper { get; set; }
///
/// 收货人
///
public string Consignee { get; set; }
///
/// 通知人
///
public string NotifyParty { get; set; }
///
/// 第二通知人
///
public string NotifyParty2 { get; set; }
///
/// 订舱方
///
public string TransportReceiver { get; set; }
///
/// 唛头
///
public string Marks { get; set; }
///
/// HS CODE
///
public string HSCode { get; set; }
///
/// 货描
///
public string Description { get; set; }
///
/// 船名
///
public string Vessel { get; set; }
///
/// 航次
///
public string VoyNo { get; set; }
///
/// 截单备注
///
public string Remark { get; set; }
///
/// 付费方式
///
public string BLFRT { get; set; }
///
/// 运输条款
///
/// CY-CY
public string Service { get; set; }
///
/// 签单方式
///
/// TELEX
public string IssueType { get; set; }
///
/// 提取签单方式
///
/// TELEX
public string TakeIssueTypeName { get; set; }
///
/// 装货港代码
///
/// CNTAO
public string PortLoadId { get; set; }
///
/// 装货港
///
public string PortLoad { get; set; }
///
/// 卸货港代码
///
/// GUPIT
public string PortDischargeId { get; set; }
///
/// 卸货港
///
public string PortDischarge { get; set; }
///
/// 中转港代码
///
/// GUPIT
public string PortTransId { get; set; }
///
/// 中转港
///
public string PortTrans { get; set; }
///
/// 目的地代码
///
/// GUPIT
public string DestinationId { get; set; }
///
/// 目的地
///
public string Destination { get; set; }
///
/// 件数
///
public int? PKGS { get; set; }
///
/// 包装
///
public string KindPKGS { get; set; }
///
/// 毛重
///
public decimal? KGS { get; set; }
///
/// 尺寸
///
public decimal? CBM { get; set; }
///
/// 第三付款地
///
public string ThirdPayAddr { get; set; }
///
/// 截单上传时间
///
public string SubmittedDate { get; set; }
///
/// 签单方式(seaway、original、telex)
///
public string DocumentType { get; set; }
///
/// 提单份数
///
public string BillOfNum { get; set; }
///
/// 放单方式
///
public string ReleaseInstruction { get; set; }
///
/// 是否拆单 SPLIT-标识已拆单
///
public string SISubType { get; set; }
///
/// 箱信息
///
public List ContaList { get; set; }
}
public class SIFeedBackCompareContaDto
{
///
/// 集装箱号
///
/// RFCU2088064
public string ContaNo { get; set; }
///
/// 铅封号
///
/// T090518
public string SealNo { get; set; }
///
/// 件数
///
/// 222
public int PKGS { get; set; }
///
/// 重量
///
/// 1651
public decimal? KGS { get; set; }
///
/// 尺寸
///
/// 9.67
public decimal? CBM { get; set; }
///
/// 箱型代码
///
/// 20GP
public string ContaType { get; set; }
///
/// 箱型
///
/// 20GP
public string ContaTypeName { get; set; }
///
/// 包装
///
public string KINDPKGS { get; set; }
///
/// 称重方式
///
public string WeighType { get; set; }
///
/// 称重重量
///
public Nullable WeighKGS { get; set; }
}
}