From 70563afe3ab4e833a2eecc9802e32fed6a31af8a Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期二, 11 一月 2022 16:08:53 +0800
Subject: [PATCH] 修改未登录查询志愿者团队bug

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |   23 ++++++++++++++++++++---
 1 files changed, 20 insertions(+), 3 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 ccdcd7a..5a15428 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
@@ -7530,11 +7530,11 @@
 
     /**
      * 党员积分前3
-     * @param communityId
+     * @param pageBigScreenStatisticPartyOrg
      * @return
      */
-    @GetMapping("/bigscreen/party/partyActivityTop")
-    R partyActivityTop(@RequestParam("communityId")Long communityId);
+    @PostMapping("/bigscreen/party/partyActivityTop")
+    R partyActivityTop(@RequestBody PageBigScreenStatisticPartyOrg pageBigScreenStatisticPartyOrg);
 
     /**
      * 社区服务大屏数据分析接口
@@ -7712,4 +7712,21 @@
      */
     @PostMapping("/screen/index/volunteerActList")
     R indexVolunteerActList(@RequestBody PageBaseDTO pageBaseDTO);
+
+    /**
+     * 清网治格-根据事件分类获取近1月的社区事件数据
+     * @param type
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/screen/event/list")
+    R getEventList(@RequestParam(value = "type") Integer type, @RequestParam(value = "communityId") Long communityId);
+
+    /**
+     * 清网治格-社区事件数据分页
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/screen/event/page")
+    R pageEventList(@RequestBody PageBaseDTO pageBaseDTO);
 }

--
Gitblit v1.7.1