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
{
///
/// 公务出访客户资料Id
///
[SugarColumn(ColumnDescription = "公务出访客户资料Id", IsNullable = true, ColumnDataType = "int")]
public int OfficialDutyId { get; set; }
///
/// 翻译人员Id
///
[SugarColumn(ColumnDescription = "翻译人员Id", IsNullable = true, ColumnDataType = "int")]
public int TranslatorId { get; set; }
}
}