12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
- /// <summary>
- /// 公务信息关联翻译人员
- /// </summary>
- [SugarTable("Grp_OfficialDutyLinkTranslator")]
- public class Grp_OfficialDutyLinkTranslator : EntityBase
- {
- /// <summary>
- /// 公务出访客户资料Id
- /// </summary>
- [SugarColumn(ColumnDescription = "公务出访客户资料Id", IsNullable = true, ColumnDataType = "int")]
- public int OfficialDutyId { get; set; }
- /// <summary>
- /// 翻译人员Id
- /// </summary>
- [SugarColumn(ColumnDescription = "翻译人员Id", IsNullable = true, ColumnDataType = "int")]
- public int TranslatorId { get; set; }
- }
- }
|