From d56a4ae3aded7fecbecf98d33557f28dedc3abc6 Mon Sep 17 00:00:00 2001 From: fengjin <1435304038@qq.com> Date: 星期一, 05 十二月 2022 16:57:43 +0800 Subject: [PATCH] Merge branch 'huacheng_test' of http://gitlab.nhys.cdnhxx.com/root/zhihuishequ into huacheng_test --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 42 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java index 618d0c7..6dd8a16 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java @@ -9,6 +9,7 @@ import javax.annotation.Resource; import com.panzhihua.common.controller.BaseController; +import com.panzhihua.common.model.dtos.PageBaseDTO; import com.panzhihua.common.model.dtos.community.ActivityInviteDTO; import com.panzhihua.common.model.dtos.community.PageActivityInviteDTO; import com.panzhihua.common.model.dtos.property.CommonPage; @@ -2771,4 +2772,45 @@ return automessageSysUserService.selectAutomessageSysUserById(id); } + /** + * 根据id查询重复的社区id集合 + * @return + */ + @GetMapping("selectBasicData") + public R selectBasicData(){ + return comActService.selectBasicData(); + } + + /** + * 统计在职干部特长 + * @return + */ + @GetMapping("statisticsPbMemberType") + public R statisticsPbMemberType(){ + return comActService.statisticsPbMemberType(); + } + + /** + * 统计单位 + * @return + */ + @GetMapping("selectUnitByNatureName") + public R selectUnitByNatureName(){ + return comActService.selectUnitByNatureName(); + } + + /** + * 大屏-社区活动分页 + * @return + */ + @PostMapping("pageActivityBigScreen") + public R pageActivityBigScreen(@RequestBody PageBaseDTO pageBaseDTO){ + return comActActivityService.pageActivityBigScreen(pageBaseDTO); + } + + @GetMapping("easyphoto/selectStatisticsPhoto") + public R selectStatisticsPhoto() { + return comActEasyPhotoService.selectStatisticsPhoto(); + } + } -- Gitblit v1.7.1