using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
///
///
///
[SugarTable("booking_edi_ext")]
[Description("EDI扩展")]
public class BookingEDIExt : DBEntityTenant
{
///
/// 订舱ID
///
public long BookingId { get; set; }
///
/// 委托方
///
[Description("委托方")]
public string WeiTuoFang { get; set; }
///
/// 发送方EDI代码
///
[Description("发送方EDI代码")]
public string SendCode { get; set; }
///
/// 接收方EDI代码
///
[Description("接收方EDI代码")]
public string ReceiveCode { get; set; }
///
/// 通知放EDI代码
///
[Description("通知放EDI代码")]
public string NotifyCdoe { get; set; }
///
/// 销售EDI代码
///
[Description("销售EDI代码")]
public string SalerCode { get; set; }
///
/// Master Bol Indicator
///
[Description("Master Bol Indicator")]
public string MasterBolIndicator { get; set; }
///
/// EMANIFEST HBL
///
[Description("EMANIFEST HBL")]
public string EmanifestHbl { get; set; }
///
/// 收货人EDI代码
///
[Description("收货人EDI代码")]
public string ConsigneeEdiCode { get; set; }
///
/// 发货人EDI代码
///
[Description("发货人EDI代码")]
public string ShipperEdiCode { get; set; }
///
/// EDI联系人名称
///
[Description("EDI联系人名称")]
public string EDIAttn { get; set; }
///
/// EDI联系人电话
///
[Description("EDI联系人电话")]
public string EDIAttnTel { get; set; }
///
/// EDI联系人邮箱
///
[Description("EDI联系人邮箱")]
public string EDIAttnMail { get; set; }
///
/// AMS收货人
///
[Description("AMS收货人")]
public string AMSConsignee { get; set; }
///
/// AMS通知人
///
[Description("AMS通知人")]
public string AMSNotifyParty { get; set; }
///
/// 操作英文名称
///
[Description("操作英文名称")]
public string OpEName { get; set; }
///
/// 操作电话
///
[Description("操作电话")]
public string OpTel { get; set; }
///
/// 操作邮箱
///
[Description("操作邮箱")]
public string OpEmail { get; set; }
///
/// ACI HBL
///
[Description("ACI HBL")]
public string ACIHBL { get; set; }
///
/// S0C C0C
///
[Description("S0C C0C")]
public string S0CC0C { get; set; }
///
/// 商品名称
///
[Description("商品名称")]
public string GoodsName { get; set; }
///
/// Master Bol Indicator名称
///
[Description("Master Bol Indicator名称")]
public string MasterBolIndicatorName { get; set; }
///
/// 销售EDI名称
///
[Description("销售EDI名称")]
public string SalerCodeName { get; set; }
///
/// 欧盟港口、伊朗港口、KHI
///
[Description("欧盟港口、伊朗港口、KHI")]
public string CKHI { get; set; }
///
/// 南美东
///
[Description("南美东")]
public string CNCM { get; set; }
///
/// 巴西线的木质包装情况
///
[Description("巴西线的木质包装情况")]
public string WNCM { get; set; }
///
/// 订舱人说明
///
[Description("订舱人说明")]
public string OrderRemark { get; set; }
///
/// 辅助字段1
///
[Description("辅助字段1")]
public string ExRemark1 { get; set; }
///
/// 辅助字段2
///
[Description("辅助字段2")]
public string ExRemark2 { get; set; }
///
/// 辅助字段3
///
[Description("辅助字段3")]
public string ExRemark3 { get; set; }
///
/// 辅助字段4
///
[Description("辅助字段4")]
public string ExRemark4 { get; set; }
///
/// 第一层包装皮重
///
[Description("第一层包装皮重")]
public decimal? KingTareweight { get; set; }
///
/// 箱满仓业务员
///
[Description("箱满仓业务员")]
public string XMCYWY { get; set; }
///
/// EMC Name accout
///
[Description("EMC Name accout")]
public string EmcNameAccount { get; set; }
///
/// CNPTNo
///
[Description("CNPT No")]
public string CNPTNo { get; set; }
}
}