using DS.Module.Core.Data; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 业务场站入货通知信息 /// [SqlSugar.SugarTable("op_business_yard", "业务场站入货通知信息")] public class BusinessYard : BaseOrgModel { /// /// 业务Id /// [SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false)] public long BusinessId { get; set; } /// /// 通知人 /// [SugarColumn(ColumnDescription = "通知人", IsNullable = true, Length = 60)] public string ToName { get; set; } /// /// 联系人 /// [SugarColumn(ColumnDescription = "联系人", IsNullable = true, Length = 30)] public string ToAttn { get; set; } /// /// ATTN电话 /// [SugarColumn(ColumnDescription = "ATTN电话", IsNullable = true, Length = 30)] public string ToAttnTel { get; set; } /// /// ATTN传真 /// [SugarColumn(ColumnDescription = "ATTN传真", IsNullable = true, Length = 30)] public string ToAttnFax { get; set; } /// /// ATTN邮箱 /// [SugarColumn(ColumnDescription = "ATTN邮箱", IsNullable = true, Length = 30)] public string ToAttnEmail { get; set; } /// /// 通知人 /// [SugarColumn(ColumnDescription = "通知人", IsNullable = true, Length = 60)] public string FromName { get; set; } /// /// FROM电话 /// [SugarColumn(ColumnDescription = "FROM电话", IsNullable = true, Length = 100)] public string FromTel { get; set; } /// /// FROM手机号 /// [SugarColumn(ColumnDescription = "FROM手机号", IsNullable = true, Length = 100)] public string FromMobile { get; set; } /// /// FROM传真 /// [SugarColumn(ColumnDescription = "FROM传真", IsNullable = true, Length = 100)] public string FromFax { get; set; } /// /// FROM邮箱 /// [SugarColumn(ColumnDescription = "FROM邮箱", IsNullable = true, Length = 100)] public string FromEmail { get; set; } /// /// 主提单号 /// [SqlSugar.SugarColumn(ColumnDescription = "主提单号", IsNullable = false, Length = 30)] public string MBLNO { get; set; } /// /// 卸货港Id /// [SugarColumn(ColumnDescription = "卸货港Id", IsNullable = true)] public long DischargePortId { get; set; } /// /// 卸货港 /// [SugarColumn(ColumnDescription = "卸货港", Length = 60, IsNullable = true)] public string DischargePort { get; set; } /// /// 船名航次 /// [SugarColumn(ColumnDescription = "卸货港", Length = 100, IsNullable = true)] public string VesselVoyNo { get; set; } /// /// 开船日期 /// [SugarColumn(ColumnDescription = "开船日期", IsNullable = true)] public DateTime? ETD { get; set; } /// /// 目的地 /// [SugarColumn(ColumnDescription = "目的地", IsNullable = true, Length = 60)] public string Destination { get; set; } /// /// 件重尺 /// [SugarColumn(ColumnDescription = "件重尺", IsNullable = true, Length = 100)] public string PKC { get; set; } /// /// 货物描述 /// [SugarColumn(ColumnDescription = "货物描述", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string Description { get; set; } /// /// 提箱场站 /// [SugarColumn(ColumnDescription = "YardId")] public long YardId { get; set; } /// /// 提箱场站名称 /// [SugarColumn(ColumnDescription = "提箱场站名称", Length = 60, IsNullable = true)] public string YardName { get; set; } /// /// 地址 /// [SugarColumn(ColumnDescription = "地址", IsNullable = true, Length = 200)] public string YardAddress { get; set; } /// /// 电话 /// [SugarColumn(ColumnDescription = "电话", IsNullable = true, Length = 100)] public string YardTel { get; set; } /// /// 提箱联系人 /// [SugarColumn(ColumnDescription = "提箱联系人")] public long YardAttn { get; set; } /// /// 入货场站 /// [SugarColumn(ColumnDescription = "入货场站Id")] public long ReceiveYardId { get; set; } /// /// 入货场站名称 /// [SugarColumn(ColumnDescription = "入货场站名称", Length = 60, IsNullable = true)] public string ReceiveYardName { get; set; } /// /// 入货地址 /// [SugarColumn(ColumnDescription = "入货地址", IsNullable = true, Length = 200)] public string ReceiveAddress { get; set; } /// /// 入货电话 /// [SugarColumn(ColumnDescription = "入货电话", IsNullable = true, Length = 100)] public string ReceiveTel { get; set; } /// /// 入货联系人 /// [SugarColumn(ColumnDescription = "入货联系人")] public long ReceiveAttn { get; set; } /// /// Desc:单证Id /// [SugarColumn(ColumnDescription = "单证Id",IsNullable = true)] public long Doc { get; set; } /// /// Desc:单证人员名称 /// [SugarColumn(ColumnDescription = "单证人员名称", IsNullable = true, Length = 100)] public string DocName { get; set; } /// /// 单证电话 /// [SugarColumn(ColumnDescription = "单证电话", IsNullable = true, Length = 100)] public string DocTel { get; set; } /// /// 单证传真 /// [SugarColumn(ColumnDescription = "单证传真", IsNullable = true, Length = 100)] public string DocFax { get; set; } /// /// 单证邮箱 /// [SugarColumn(ColumnDescription = "单证邮箱", IsNullable = true, Length = 100)] public string DocEmail { get; set; } /// /// 截港日期 /// [SugarColumn(ColumnDescription = "截港日期", IsNullable = true)] public DateTime? ClosingDate { get; set; } /// /// 截单日期 /// [SugarColumn(ColumnDescription = "截单日期", IsNullable = true)] public DateTime CloseDocDate { get; set; } /// /// 截VGM日期 /// [SugarColumn(ColumnDescription = "截VGM日期", IsNullable = true)] public DateTime CloseVGMDate { get; set; } /// /// 出口海关 /// [SugarColumn(ColumnDescription = "出口海关", IsNullable = true, Length = 100)] public string ExportCustoms { get; set; } /// /// 海关代码 /// [SugarColumn(ColumnDescription = "海关代码", IsNullable = true, Length = 100)] public string CustomsCode { get; set; } /// /// 报关代码 /// [SugarColumn(ColumnDescription = "报关代码", IsNullable = true, Length = 100)] public string DeclarationCode { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string Remark { get; set; } /// /// 提箱小票地址 /// [SugarColumn(ColumnDescription = "提箱小票地址", IsNullable = true, Length = 260)] public string PickReceiptUrl { get; set; } /// /// 提箱时间 /// [SugarColumn(ColumnDescription = "提箱时间", IsNullable = true)] public DateTime PickUpTime { get; set; } /// /// 入货时间 /// [SugarColumn(ColumnDescription = "入货时间", IsNullable = true)] public DateTime ReceiveTime { get; set; } /// /// 箱型箱量 /// [SugarColumn(ColumnDescription = "箱型箱量", IsNullable = true,Length =100)] public string CntrTotal { get; set; } } }