|
@@ -48,5 +48,13 @@ public class WxApiController extends BaseController{
|
|
|
param.setIsShow(1);
|
|
|
return ResultData.ok(innerService.roomList(param));
|
|
|
}
|
|
|
+ /**
|
|
|
+ * 全部房间列表
|
|
|
+ */
|
|
|
+ @GetMapping("/delUser")
|
|
|
+ public ResultData delUser(@RequestParam(required = false) String wxUserId){
|
|
|
+ wxUserService.removeById(wxUserId);
|
|
|
+ return ResultData.ok();
|
|
|
+ }
|
|
|
|
|
|
}
|