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 { /// /// 区域 /// public string Area { get; set; } /// /// 职务 /// public string Job { get; set; } /// /// 职务英文 /// public string JobEn { get; set; } /// /// 背景 /// public string DelegationSetting { get; set; } /// /// 背景英文 /// public string DelegationSettingEn { get; set; } } }