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_letter_yard", "函电信息入货通知")] public class OpLetterYard : BaseOrgModel { /// /// LetterId /// [SugarColumn(ColumnDescription = "LetterId")] public long LetterId { get; set; } /// /// 主提单号 /// [SqlSugar.SugarColumn(ColumnDescription = "主提单号", IsNullable = false, Length = 30)] public string MBLNO { 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 = "地址", IsNullable = true, Length = 200)] public string Address { get; set; } /// /// 电话 /// [SugarColumn(ColumnDescription = "电话", IsNullable = true, Length = 100)] public string Tel { get; set; } /// /// 提箱联系人 /// [SugarColumn(ColumnDescription = "提箱联系人")] public long ATTN { get; set; } /// /// 入货场站 /// [SugarColumn(ColumnDescription = "入货场站Id")] public long ReceiveYardId { 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:单证 /// [SugarColumn(ColumnDescription = "单证")] public long Doc { 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 PickTime { get; set; } /// /// 入货时间 /// [SugarColumn(ColumnDescription = "入货时间", IsNullable = true)] public DateTime ReceiveTime { get; set; } } }