You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
541 B
C#
29 lines
541 B
C#
using SqlSugar;
|
|
using System.ComponentModel;
|
|
namespace Myshipping.Core.Entity;
|
|
|
|
/// <summary>
|
|
/// 员工附属机构职位表
|
|
/// </summary>
|
|
[SugarTable("sys_emp_ext_org_pos")]
|
|
[Description("员工附属机构职位表")]
|
|
public class SysEmpExtOrgPos
|
|
{
|
|
/// <summary>
|
|
/// 员工Id
|
|
/// </summary>
|
|
public long SysEmpId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 机构Id
|
|
/// </summary>
|
|
public long SysOrgId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 职位Id
|
|
/// </summary>
|
|
public long SysPosId { get; set; }
|
|
}
|