数据权限查询

This commit is contained in:
陈淳
2022-09-15 19:45:51 +08:00
parent 2a4f646181
commit 71cf85f535
11 changed files with 117 additions and 36 deletions

View File

@@ -14,5 +14,13 @@ namespace Yi.Framework.Interface
/// <param name="dept"></param>
/// <returns></returns>
Task<List<DeptEntity>> SelctGetList(DeptEntity dept);
/// <summary>
/// 根据角色id获取该角色的部门权限
/// </summary>
/// <param name="roleId"></param>
/// <returns></returns>
Task<List<DeptEntity>> GetListByRoleId(long roleId);
}
}