using OASystem.Domain.Attributes; using System; using System.Collections.Generic; using System.Diagnostics.Metrics; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Resource { /// /// 商邀资料 /// [SugarTable("Res_InvitationOfficialActivityData")] public class Res_InvitationOfficialActivityData:EntityBase { [SugarColumn(IsIgnore = true)] public int RowIndex { get; set; } //行号 序号 /// /// 邀请方国家 /// [SugarColumn(IsNullable =true,ColumnDataType ="varchar(150)")] [Encrypted] public string Country { get; set; } /// /// 城市 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(150)")] [Encrypted] public string City { get; set; } /// /// 邀请方名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")] [Encrypted] public string UnitName { get; set; } /// ///邀请方官网 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(150)")] [Encrypted] public string UnitWeb { get; set; } /// /// 涉及领域 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(150)")] [Encrypted] public string Field { get; set; } /// /// 邀请方地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")] [Encrypted] public string Address { get; set; } /// /// 邀请方信息 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] [Encrypted] public string UnitInfo { get; set; } /// /// 联系人 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string Contact { get; set; } /// /// 职务 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string Job { get; set; } /// /// 联系电话 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string Tel { get; set; } /// /// 电子邮箱 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string Email { get; set; } /// /// 微信 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string WeChat { get; set; } /// /// fb /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string FaceBook { get; set; } /// /// ins /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string Ins { get; set; } /// /// 团名 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string Delegation { get; set; } /// /// 文件地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string FilePath { get; set; } /// /// 文件地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")] [Encrypted] public string SndFileName { get; set; } /// /// 修改版文件地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string SndFilePath { get; set; } /// /// 传真号码 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] [Encrypted] public string Fax { get; set; } /// /// 其他信息 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] [Encrypted] public string OtherInfo { get; set; } /// /// 背景 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] [Encrypted] public string Background { get; set; } } }