| 123456789101112131415161718192021222324252627 |
- namespace Admin.NET.Core;
- /// <summary>
- /// 系统角色机构表
- /// </summary>
- [SugarTable("sys_role_org", "系统角色机构表")]
- [SqlSugarEntity]
- public class SysRoleOrg : EntityBaseId
- {
- /// <summary>
- /// 角色Id
- /// </summary>
- [SugarColumn(ColumnDescription = "角色Id")]
- public long RoleId { get; set; }
- /// <summary>
- /// 机构Id
- /// </summary>
- [SugarColumn(ColumnDescription = "机构Id")]
- public long OrgId { get; set; }
- /// <summary>
- /// 机构
- /// </summary>
- [SugarColumn(IsIgnore = true)]
- public SysOrg SysOrg { get; set; }
- }
|