|
|
|
@ -88,6 +88,13 @@ public class SysRoleController extends BaseController {
|
|
|
|
|
@PutMapping
|
|
|
|
|
@Log(title = "用户管理", businessType = BusinessType.UPDATE)
|
|
|
|
|
public BaseResponse edit(@Validated @RequestBody SysRole role) {
|
|
|
|
|
//把角色改成禁用的时候 如果存在关联 不能禁用
|
|
|
|
|
if("1".equals(role.getStatus())){
|
|
|
|
|
List<SysUserRole> sysUserRoles = roleService.selectUserRoleList(role.getRoleId());
|
|
|
|
|
if( !sysUserRoles.isEmpty()){
|
|
|
|
|
return ResultVOUtils.error(500, "角色已关联用户,不能禁用!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
roleService.checkRoleAllowed(role);
|
|
|
|
|
roleService.checkRoleDataScope(role.getRoleId());
|
|
|
|
|
if (Constant.NOT_UNIQUE.equals(roleService.checkRoleNameUnique(role))) {
|
|
|
|
|