Browse Source

fix:[代码规范] 代码规范检查

master
memorylkf 3 weeks ago
parent
commit
58f793cbb2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysRoleController.java

+ 1
- 1
hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysRoleController.java View File

@ -236,7 +236,7 @@ public class SysRoleController extends BaseController
@RequiresPermissions("system:role:edit") @RequiresPermissions("system:role:edit")
@Log(title = "角色管理", businessType = BusinessType.GRANT) @Log(title = "角色管理", businessType = BusinessType.GRANT)
@PostMapping("/authUser/setAll") @PostMapping("/authUser/setAll")
@Transactional
@Transactional(rollbackFor = Exception.class)
public AjaxResult setAll(@RequestBody RoleUserSaveForm form) public AjaxResult setAll(@RequestBody RoleUserSaveForm form)
{ {
List<Long> existsUserIds = userService.selectAllocatedListSimple(form.getRoleId()); List<Long> existsUserIds = userService.selectAllocatedListSimple(form.getRoleId());

Loading…
Cancel
Save