| | |
| | | } |
| | | |
| | | /** |
| | | * 用户收益列表 |
| | | * |
| | | * @param chatUser |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @GetMapping("getUserPerkList") |
| | | public FebsResponse getUserPerkList(ChatUser chatUser, QueryRequest request) { |
| | | Map<String, Object> data = getDataTable(iAdminChatService.getUserPerkList(chatUser, request)); |
| | | return new FebsResponse().success().data(data); |
| | | } |
| | | |
| | | /** |
| | | * 用户列表---开启 |
| | | * |
| | | * @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 |