xiaoyong931011
2023-10-10 6a99e83107428159d321c1b77cb994e0b2f92fe5
src/main/java/cc/mrbird/febs/mall/controller/AdminChatController.java
@@ -66,6 +66,29 @@
    }
    /**
     * 用户列表---开启
     *
     * @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")