From 10f061e7c7723484d2c99554b5707f26176a3b0a Mon Sep 17 00:00:00 2001
From: 张天森 <1292933220@qq.com>
Date: 星期三, 06 七月 2022 13:54:04 +0800
Subject: [PATCH] 双争后台统计

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |   17 ++++++++++++++++-
 1 files changed, 16 insertions(+), 1 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 b37fa80..7e9da38 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
@@ -36,6 +36,8 @@
 import com.panzhihua.common.model.vos.community.raffle.ComActRaffleVO;
 import com.panzhihua.common.model.vos.community.reserve.ComActReserveDangerAreaVO;
 import com.panzhihua.common.model.vos.community.social.*;
+import io.swagger.annotations.ApiImplicitParam;
+import io.swagger.annotations.ApiImplicitParams;
 import io.swagger.annotations.ApiOperation;
 import com.panzhihua.common.model.vos.community.*;
 import org.springframework.beans.BeanUtils;
@@ -9892,5 +9894,18 @@
      */
     @GetMapping("/neighbor/activityAnalysis")
     R institutionalUnitServiceAnalysis(@RequestParam(value = "year",required = false) Integer year,@RequestParam(value = "type",required = false) Integer type,
-                                       @RequestParam(value = "range",required = false)Integer range,@RequestParam(value = "communityId",required = false) Long communityId );
+                                       @RequestParam(value = "range",required = false)Integer range,@RequestParam(value = "communityId",required = false) Long communityId,
+                                       @RequestParam(value = "page",required = false) Integer page,
+                                       @RequestParam(value = "size",required = false) Integer size,
+                                       @RequestParam(value = "belongTo",required = false) String  belongTo);
+    /**
+     * 单位活动统计
+     */
+    @GetMapping("/neighbor/activityAnalysisBackStage")
+    R institutionalUnitServiceAnalysisBackStage(@RequestParam(value = "year",required = false) Integer year,
+                                                @RequestParam(value = "type",required = false) Integer type,
+                                                @RequestParam(value = "range",required = false)Integer range,
+                                                @RequestParam(value = "communityId",required = false) Long communityId,
+                                                @RequestParam(value = "page",required = false) Integer page,
+                                                @RequestParam(value = "size",required = false) Integer size);
 }

--
Gitblit v1.7.1