From 40529f7d2cadd71c72cb89c7f79046a8ff689df5 Mon Sep 17 00:00:00 2001 From: huanghongfa <18228131219@163.com> Date: 星期四, 24 十二月 2020 17:45:10 +0800 Subject: [PATCH] 系统管理 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java index 3b07a42..d56f830 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java @@ -8,6 +8,8 @@ import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; +import java.util.List; + /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 社区 @@ -443,4 +445,28 @@ */ @PostMapping("addhouses") R addHouses(@RequestBody ComMngStructHouseVO comMngStructHouseVO); + + /** + * 查询小区 + * @param communityId 社区id + * @return 小区集合 + */ + @PostMapping("listarea") + R<List<ComActActivityVO>> listArea(@RequestParam("communityId")Long communityId); + + /** + * 用户参加的所有社区活动 + * @param userId 用户id + * @return 活动列表 + */ + @PostMapping("listactivity") + R listActivity(@RequestParam("userId")Long userId ); + + /** + * 用户确认心愿 + * @param comActMicroWishVO 用户评价 + * @return 确认结果 + */ + @PostMapping("putmicrowishconfirm") + R putMicroWishConfirm(@RequestBody ComActMicroWishVO comActMicroWishVO); } -- Gitblit v1.7.1