| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @GetMapping("openSwitchGetBoom/{userId}") |
| | | @ControllerEndpoint(operation = "会员列表---开启", exceptionMessage = "操作失败") |
| | | public FebsResponse openSwitchGetBoom(@NotNull(message = "{required}") @PathVariable String userId) { |
| | | return iAdminChatService.openSwitchGetBoom(userId); |
| | | } |
| | | /** |
| | | * 用户列表---关闭 |
| | | * |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @GetMapping("closeSwitchGetBoom/{userId}") |
| | | @ControllerEndpoint(operation = "会员列表---关闭", exceptionMessage = "操作失败") |
| | | public FebsResponse closeSwitchGetBoom(@NotNull(message = "{required}") @PathVariable String userId) { |
| | | return iAdminChatService.closeSwitchGetBoom(userId); |
| | | } |
| | | |
| | | /** |
| | | * 用户列表---开启 |
| | | * |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @GetMapping("openCreateGroup/{userId}") |
| | | @ControllerEndpoint(operation = "会员列表---开启", exceptionMessage = "操作失败") |
| | | public FebsResponse openCreateGroup(@NotNull(message = "{required}") @PathVariable String userId) { |