|
|
@@ -95,9 +95,9 @@ public class UserController {
|
|
|
*/
|
|
|
@ApiOperation(value = "删除用户组", notes = "删除用户组", response = RepEntity.class)
|
|
|
@Auth(user = "admin")
|
|
|
- @PostMapping("/delUserGroup")
|
|
|
- public RepEntity delUserGroup(@RequestBody Long body){
|
|
|
- return userService.delUserGroup(body);
|
|
|
+ @PostMapping("/delUserGroup/{id}")
|
|
|
+ public RepEntity delUserGroup(@PathVariable("id") Long id){
|
|
|
+ return userService.delUserGroup(id);
|
|
|
}
|
|
|
|
|
|
/*
|