Dockerfile

master
Cui YongXing 2024-08-29 22:43:53 +08:00
parent b23c7fc8fb
commit 62977afb65
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public class SysRoleController extends BaseController {
@RequiresPermissions("system:role:edit") @RequiresPermissions("system:role:edit")
@Log(title = "角色管理", businessType = BusinessType.GRANT) @Log(title = "角色管理", businessType = BusinessType.GRANT)
@PutMapping("/authUser/selectAll") @PutMapping("/authUser/selectAll")
public Result selectAuthUserAll (@PathVariable("roleId") Long roleId, @PathVariable("userIds") Long[] userIds) { public Result selectAuthUserAll (@RequestParam("roleId") Long roleId, @RequestParam("userIds") Long[] userIds) {
roleService.checkRoleDataScope(roleId); roleService.checkRoleDataScope(roleId);
return toAjax(roleService.insertAuthUsers(roleId, userIds)); return toAjax(roleService.insertAuthUsers(roleId, userIds));
} }