From 5a4a13ac1c20f78fce105f260b23fe309b26c905 Mon Sep 17 00:00:00 2001
From: puhanshu <a9236326>
Date: 星期五, 31 十二月 2021 13:44:32 +0800
Subject: [PATCH] 大屏新增事件分页接口

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java |   86 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 86 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 778fb00..b1ef9b9 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 com.panzhihua.common.model.dtos.PageBaseDTO;
 import com.panzhihua.common.model.dtos.community.convenient.PagePopularMerchantDTO;
 import com.panzhihua.service_community.service.BigScreenStatisticsService;
@@ -22,6 +23,8 @@
 
     @Resource
     private ComMngPopulationService comMngPopulationService;
+    @Resource
+    private ComActService comActService;
     @Resource
     private BigScreenService bigScreenService;
     @Resource
@@ -87,6 +90,29 @@
         return R.ok(comMngPopulationService.getScreenEventDetail(eventDetailDTO));
     }
 
+    /**
+     * 西区大屏治理数据
+     */
+    @GetMapping("/getWestScreenStatics")
+    public R westScreenStatics(){
+        return comMngPopulationService.westScreenStatics();
+    }
+
+    @GetMapping("/getComprehensivePopulationStatics")
+    public R getComprehensivePopulationStatics(@RequestParam("streetId") Long streetId){
+        return comMngPopulationService.getComprehensivePopulationStatics(streetId);
+    }
+
+    @GetMapping("/getComprehensiveStreetList")
+    public R getComprehensiveStreetList(){
+        return comMngPopulationService.getComprehensiveStreetList();
+    }
+
+
+    @GetMapping("/getCommunityPassword")
+    public R getCommunityPassword(@RequestParam("communityId") Long communityId){
+        return comActService.getCommunityPassword(communityId);
+    }
     /**
      * 新版大屏首页接口
      */
@@ -270,4 +296,64 @@
         return bigScreenStatisticsService.getScreenPopularMerchants(pagePopularMerchantDTO);
     }
 
+    /**
+     * 首页二级页面-居民活动
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/index/residentAct")
+    public R indexResidentAct(@RequestParam("communityId") Long communityId) {
+        return bigScreenStatisticsService.indexResidentAct(communityId);
+    }
+
+    /**
+     * 首页二级页面-居民活动展示列表
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/index/residentActList")
+    public R indexResidentActList(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.indexResidentActList(pageBaseDTO);
+    }
+
+    /**
+     * 首页二级页面-志愿者活动
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/index/volunteerAct")
+    public R indexVolunteerAct(@RequestParam("communityId") Long communityId) {
+        return bigScreenStatisticsService.indexVolunteerAct(communityId);
+    }
+
+    /**
+     * 首页二级页面-志愿者活动展示列表
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/index/volunteerActList")
+    public R indexVolunteerActList(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.indexVolunteerActList(pageBaseDTO);
+    }
+
+    /**
+     * 清网治格-根据事件分类获取近1月的社区事件数据
+     * @param type
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/event/list")
+    public R getEventList(@RequestParam(value = "type") Integer type, @RequestParam(value = "communityId") Long communityId) {
+        return bigScreenStatisticsService.getEventList(type, communityId);
+    }
+
+    /**
+     * 清网治格-社区事件数据分页
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/event/page")
+    public R pageEventList(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.pageEventList(pageBaseDTO);
+    }
 }

--
Gitblit v1.7.1