From f2b48b52737cc39b99dc5e38c0fc72c97a44af20 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期四, 26 十月 2023 13:49:50 +0800 Subject: [PATCH] 办事指南列表筛选 --- springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComPropertyApi.java | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComPropertyApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComPropertyApi.java index 5a2b2a9..f874911 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComPropertyApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComPropertyApi.java @@ -64,8 +64,14 @@ @ApiOperation("查看自己的投诉建议或问题留言记录") @GetMapping("myFeedBack") - public R myFeedBack(@ApiParam("类型:1问题留言2投诉建议") @RequestParam(value = "type",required = false)Integer type){ - return userService.myFeedBack(this.getLoginUserInfo().getUserId(),type); + public R myFeedBack(@ApiParam("类型:1问题留言2投诉建议") @RequestParam(value = "type",required = false)Integer type,@RequestParam(value = "propertyId",required = false)Long propertyId){ + return userService.myFeedBack(this.getLoginUserInfo().getUserId(),type,propertyId); + } + + @ApiOperation("通知公告列表") + @GetMapping("notice") + public R noticeList(@RequestParam("page")Integer page,@RequestParam("size")Integer size,@RequestParam("propertyId")Long propertyId){ + return communityService.noticeList(page,size,propertyId); } } -- Gitblit v1.7.1