From 1a4b45c6109d0b5b30ee96cc76d744b54069aa2e Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期六, 18 十二月 2021 13:52:09 +0800
Subject: [PATCH] 添加通过社区id获取社区登录账号密码接口

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java
index 7104796..a117c42 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java
@@ -2,6 +2,7 @@
 
 import javax.annotation.Resource;
 
+import com.panzhihua.service_community.service.ComActService;
 import org.springframework.web.bind.annotation.*;
 
 import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDTO;
@@ -18,6 +19,8 @@
 
     @Resource
     private ComMngPopulationService comMngPopulationService;
+    @Resource
+    private ComActService comActService;
 
     /**
      * 首页大屏统计接口
@@ -97,4 +100,9 @@
         return comMngPopulationService.getComprehensiveStreetList();
     }
 
+
+    @GetMapping("/getCommunityPassword")
+    public R getCommunityPassword(@RequestParam("communityId") Long communityId){
+        return comActService.getCommunityPassword(communityId);
+    }
 }

--
Gitblit v1.7.1