using SqlSugar; namespace Admin.NET.Core { /// /// 系统用户附属机构职位表 /// [SugarTable("sys_user_ext_org_pos", "系统用户附属机构职位表")] [SqlSugarEntity] public class SysUserExtOrgPos : EntityBaseId { /// /// 用户Id /// [SugarColumn(ColumnDescription = "用户Id")] public long UserId { get; set; } /// /// 用户 /// [SugarColumn(IsIgnore = true)] public SysUser SysUser { get; set; } /// /// 机构Id /// [SugarColumn(ColumnDescription = "机构Id")] public long OrgId { get; set; } /// /// 机构 /// [SugarColumn(IsIgnore = true)] public SysOrg SysOrg { get; set; } /// /// 职位Id /// [SugarColumn(ColumnDescription = "职位Id")] public long PosId { get; set; } /// /// 职位 /// [SugarColumn(IsIgnore = true)] public SysPos SysPos { get; set; } } }