| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("openSwitchAutoSend/{id}") |
| | | @ControllerEndpoint(operation = "会员列表---开启", exceptionMessage = "操作失败") |
| | | public FebsResponse openSwitchAutoSend(@NotNull(message = "{required}") @PathVariable String id) { |
| | | return iAdminChatService.openSwitchAutoSend(id); |
| | | } |
| | | /** |
| | | * 使用机器人---关闭 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("closeSwitchAutoSend/{id}") |
| | | @ControllerEndpoint(operation = "会员列表---关闭", exceptionMessage = "操作失败") |
| | | public FebsResponse closeSwitchAutoSend(@NotNull(message = "{required}") @PathVariable String id) { |
| | | return iAdminChatService.closeSwitchAutoSend(id); |
| | | } |
| | | |
| | | /** |
| | | * 使用机器人---开启 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("openSwitchUseRobot/{id}") |
| | | @ControllerEndpoint(operation = "会员列表---开启", exceptionMessage = "操作失败") |
| | | public FebsResponse openSwitchUseRobot(@NotNull(message = "{required}") @PathVariable String id) { |