From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java index 93c87cb..9995455 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java @@ -177,7 +177,7 @@ comEvent.setCommunityId(loginUserInfo.getCommunityId()); LoginUserInfoVO loginUserInfo1 = this.getLoginUserInfo(); loginUserInfo1.setType(userService.detailUser(this.getUserId()).getData().getType()); - loginUserInfo1.setType(loginUserInfo.getType()); +// loginUserInfo1.setType(loginUserInfo.getType()); return comEventService.pageByComEvent(comEvent, pagination,loginUserInfo1); } @@ -339,7 +339,7 @@ @GetMapping("/status/calculate") public R calculate(@RequestParam(value = "level",required = false)Integer level,@RequestParam(value = "id",required = false)Long id) { LoginUserInfoVO loginUserInfo = getLoginUserInfo(); -// loginUserInfo.setType(userService.detailUser(loginUserInfo.getUserId()).getData().getType()); + loginUserInfo.setType(userService.detailUser(loginUserInfo.getUserId()).getData().getType()); return comEventService.calculate(loginUserInfo,level,id); } -- Gitblit v1.7.1