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