From b0027c86cdf6b9f537abceade8cd5315a278e67d Mon Sep 17 00:00:00 2001
From: manailin <261030956@qq.com>
Date: 星期日, 25 九月 2022 00:09:54 +0800
Subject: [PATCH] Merge remote-tracking branch 'remotes/origin/sanshuohuitang_dev' into huacheng_test

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |   39 ++++++++++++++++++++++++++++++++++++---
 1 files changed, 36 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 05985e6..2adca32 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
@@ -1280,7 +1280,7 @@
      * @return
      */
     @PostMapping("listadvertisement")
-    R listAdvertisement();
+    R listAdvertisement(@RequestParam("type") Integer type);
 
     /**
      * 新增广告
@@ -9694,6 +9694,9 @@
     @PostMapping("/comActAcidRecord/export")
     R exportComActAcidRecord(@RequestBody ComActAcidRecordDTO comActAcidRecordDTO);
 
+    @GetMapping("/comActAcidRecord/checkCommit")
+    R checkCommit(@RequestParam(value = "userId",required = false)Long userId);
+
 
     /**
      * 5项常规统计
@@ -10492,6 +10495,36 @@
     /**
      * 事件占比统计饼图
      * */
-    @GetMapping("/indexData/event")
-    R eventIndexData(@RequestParam Integer type);
+    @GetMapping("sanshuo/comEvent/indexData/event")
+    R eventIndexData(@RequestParam("type") Integer type);
+
+    /**
+     * 专家风采列表
+     * */
+    @GetMapping("/sanshuo/expert/expertShowList")
+    R expertShowList(@RequestParam(value = "level",required = false)Integer level,@RequestParam(value = "id",required = false)Long id);
+
+    /**
+     * 修改街道信息
+     * */
+    @PostMapping("/updateStreet")
+    R updateStreet(@RequestBody ComStreetVO comStreetVO);
+
+    /**
+     * 删除街道
+     * */
+    @GetMapping("/removeStreet")
+    R removeStreet(@RequestParam(value = "id",required = false)Long id);
+
+    /***
+     * 删除社区
+     * */
+    @GetMapping("/removeCommunity")
+    R removeCommunity(@RequestParam(value = "id",required = false)Long id);
+
+    @PostMapping("/repassCommunity")
+    R repassCommunity(@RequestBody ComActVO comActVO);
+
+    @PostMapping("/repassStreet")
+    R repassStreet(@RequestBody ComStreetVO comActVO);
 }

--
Gitblit v1.7.1