You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
686 B

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