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_change", " 函电信息更改通知")] public class OpLetterChange : 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 = 100)] public string PKC { get; set; } /// /// 箱型箱量 /// [SugarColumn(ColumnDescription = "箱型箱量", IsNullable = true, Length = 100)] public string CNTR { get; set; } /// /// 更改项目 /// [SugarColumn(ColumnDescription = "更改项目", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string ProjectName { get; set; } /// /// 原内容 /// [SugarColumn(ColumnDescription = "原内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string OldContent { get; set; } /// /// 现内容 /// [SugarColumn(ColumnDescription = "现内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string NewContent { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string Remark { get; set; } } }