using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class TaskSIFeedBackResultBusiDto
{
///
/// 发货人
///
public string Shipper { get; set; }
///
/// 收货人
///
public string Consignee { get; set; }
///
/// 通知人
///
public string NotifyParty { get; set; }
///
/// 唛头
///
public string Marks { get; set; }
///
/// 货描
///
public string Description { 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; }
///
/// 装货港代码
///
/// 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 List ContaList { get; set; }
}
}