From 2e64c232ab6b51b2cecf1ee96e1e9b709234f326 Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期六, 21 八月 2021 16:35:14 +0800
Subject: [PATCH] 随手拍改版接口开发

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java |   21 +++++++++++++++++----
 1 files changed, 17 insertions(+), 4 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 c3025bd..866d25f 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
@@ -1,5 +1,6 @@
 package com.panzhihua.service_community.api;
 
+import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDTO;
 import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDetailDTO;
 import com.panzhihua.common.model.vos.R;
 import com.panzhihua.service_community.service.ComMngPopulationService;
@@ -28,12 +29,12 @@
 
     /**
      * 事件大屏统计接口
-     * @param communityId   社区id
+     * @param screenEventDTO   请求参数
      * @return  统计结果
      */
-    @GetMapping("/getScreenEvent")
-    public R event(@RequestParam("communityId") Long communityId) {
-        return R.ok(comMngPopulationService.getScreenEvent(communityId));
+    @PostMapping("/getScreenEvent")
+    public R event(@RequestBody BigScreenEventDTO screenEventDTO) {
+        return R.ok(comMngPopulationService.getScreenEvent(screenEventDTO));
     }
 
     /**
@@ -46,11 +47,23 @@
         return R.ok(comMngPopulationService.getScreenCivil(communityId));
     }
 
+    /**
+     * 获取社区网格
+     *
+     * @param communityId 社区id
+     * @return 网格数据
+     */
     @GetMapping("/getScreenGirds")
     public R grids(@RequestParam("communityId") Long communityId) {
         return R.ok(comMngPopulationService.getScreenGirds(communityId));
     }
 
+    /**
+     * 事件大屏查询事件详情
+     *
+     * @param eventDetailDTO 请求参数
+     * @return 事件详情
+     */
     @PostMapping("/getScreenEventDetail")
     public R eventDetail(@RequestBody BigScreenEventDetailDTO eventDetailDTO) {
         return R.ok(comMngPopulationService.getScreenEventDetail(eventDetailDTO));

--
Gitblit v1.7.1