| | |
| | | } |
| | | |
| | | /** |
| | | * 用户列表---开启 |
| | | * |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @GetMapping("openSwitchIsRobot/{userId}") |
| | | @ControllerEndpoint(operation = "会员列表---开启", exceptionMessage = "操作失败") |
| | | public FebsResponse openSwitchIsRobot(@NotNull(message = "{required}") @PathVariable String userId) { |
| | | return iAdminChatService.openSwitchIsRobot(userId); |
| | | } |
| | | /** |
| | | * 用户列表---关闭 |
| | | * |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @GetMapping("closeSwitchIsRobot/{userId}") |
| | | @ControllerEndpoint(operation = "会员列表---关闭", exceptionMessage = "操作失败") |
| | | public FebsResponse closeSwitchIsRobot(@NotNull(message = "{required}") @PathVariable String userId) { |
| | | return iAdminChatService.closeSwitchIsRobot(userId); |
| | | } |
| | | |
| | | /** |
| | | * 用户列表-系统拨付 |
| | | */ |
| | | @PostMapping("updateSystemPay") |