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