using SqlSugar; using System.ComponentModel; namespace Magic.Core.Entity; /// /// 员工附属机构职位表 /// [SugarTable("sys_emp_ext_org_pos")] [Description("员工附属机构职位表")] public class SysEmpExtOrgPos { /// /// 员工Id /// [SugarColumn(ColumnDescription = "员工Id")] public long SysEmpId { get; set; } /// /// 机构Id /// [SugarColumn(ColumnDescription = "机构Id")] public long SysOrgId { get; set; } /// /// 职位Id /// [SugarColumn(ColumnDescription = "职位Id")] public long SysPosId { get; set; } }