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", "函电信息主表")] public class OpLetter : BaseOrgModel { /// /// 业务编号 /// [SqlSugar.SugarColumn(ColumnDescription = "业务编号", IsNullable = false, Length = 100)] public string BSNO { get; set; } /// /// 通知人 /// [SugarColumn(ColumnDescription = "通知人", IsNullable = true, Length = 60)] public string HeadTo { get; set; } /// /// 联系人 /// [SugarColumn(ColumnDescription = "联系人", IsNullable = true, Length = 30)] public string HeadATTN { get; set; } /// /// 函电名称 /// [SugarColumn(ColumnDescription = "函电名称", IsNullable = true, Length = 100)] public string LetterName { get; set; } /// /// ATTN电话 /// [SugarColumn(ColumnDescription = "ATTN电话", IsNullable = true, Length = 30)] public string HeadATTNTel { get; set; } /// /// ATTN传真 /// [SugarColumn(ColumnDescription = "ATTN传真", IsNullable = true, Length = 30)] public string HeadATTNFax { get; set; } /// /// FROM电话 /// [SugarColumn(ColumnDescription = "summary", IsNullable = true, Length = 100)] public string HeadFromTel { get; set; } /// /// FROM传真 /// [SugarColumn(ColumnDescription = "FROM传真", IsNullable = true, Length = 100)] public string HeadFromFax { get; set; } /// /// FROM邮箱 /// [SugarColumn(ColumnDescription = "FROM邮箱", IsNullable = true, Length = 100)] public string HeadFromEmail { get; set; } } }