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