liujie
2025-07-11 c3892d8e7378ea9441689ebe7009b3e02160b7a1
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));
    }
}