xiaoyong931011
2023-10-25 0e7e1cfea951c7aee59a862c514e08a040523d9f
src/main/java/cc/mrbird/febs/mall/controller/AdminChatController.java
@@ -64,6 +64,29 @@
     * @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) {