Grp_OfficialDutyLinkTranslator.cs 835 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 公务信息关联翻译人员
  10. /// </summary>
  11. [SugarTable("Grp_OfficialDutyLinkTranslator")]
  12. public class Grp_OfficialDutyLinkTranslator : EntityBase
  13. {
  14. /// <summary>
  15. /// 公务出访客户资料Id
  16. /// </summary>
  17. [SugarColumn(ColumnDescription = "公务出访客户资料Id", IsNullable = true, ColumnDataType = "int")]
  18. public int OfficialDutyId { get; set; }
  19. /// <summary>
  20. /// 翻译人员Id
  21. /// </summary>
  22. [SugarColumn(ColumnDescription = "翻译人员Id", IsNullable = true, ColumnDataType = "int")]
  23. public int TranslatorId { get; set; }
  24. }
  25. }