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