liujie
2025-07-28 039abee6b27058ca46b1e1e82aa0b5407a5dad44
springcloud_k8s_panzhihuazhihuishequ/service_westcommittee/src/main/java/com/panzhihua/westcommittee/controller/HomeController.java
@@ -129,6 +129,7 @@
            throw new RuntimeException(e);
        }
    }
    /**
     * 获取身份信息
     */
@@ -141,7 +142,6 @@
        BeanUtils.copyProperties(identityInformation, identityInformationVO);
        return R.ok(identityInformationVO);
    }
    /**
@@ -177,4 +177,13 @@
        redisUtils.set("confirmContent:" + loginUserInfo.getPhone(), 1);
        return R.ok();
    }
    @GetMapping("/getComplaintTip")
    @ApiOperation("管理员获取提示弹窗")
    public R<?> getComplaintTip() {
        LoginUserInfoVO loginUserInfo = getLoginUserInfo();
        return R.ok(complaintService.getComplaintTip(loginUserInfo));
    }
}