using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组英文资料 /// [SugarTable("Grp_DelegationEnData")] public class Grp_DelegationEnData:EntityBase { /// /// 区域 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Area { get; set; } /// /// 职务 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Job { get; set; } /// /// 职务英文 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string JobEn { get; set; } /// /// 背景 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string DelegationSetting { get; set; } /// /// 背景英文 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string DelegationSettingEn { get; set; } } }