From 06620a6b0e64126e216edab8fced4597b38936b3 Mon Sep 17 00:00:00 2001
From: manailin <261030956@qq.com>
Date: 星期一, 21 六月 2021 13:55:11 +0800
Subject: [PATCH] [修改]合并test_excel分支到test分支。解决部分冲突。

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |   44 +++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 39 insertions(+), 5 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 d2f6b49..0ededa1 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
@@ -5,6 +5,7 @@
 import com.panzhihua.common.model.dtos.advertisement.ComOpsAdvDTO;
 import com.panzhihua.common.model.dtos.advertisement.PageComOpsAdvDTO;
 import com.panzhihua.common.model.dtos.community.*;
+import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDetailDTO;
 import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenStatisticAgeGenderDTO;
 import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenStatisticPartyActivityDTO;
 import com.panzhihua.common.model.dtos.community.bigscreen.PageBigScreenStatisticPartyOrg;
@@ -41,7 +42,6 @@
 import com.panzhihua.common.model.vos.shop.ShopStoreVO;
 import com.panzhihua.common.model.vos.user.UserElectronicFileVO;
 import com.panzhihua.common.model.vos.user.UserPhoneVO;
-import com.panzhihua.common.utlis.ExcelSelectObject;
 import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.transaction.annotation.Transactional;
 import org.springframework.web.bind.annotation.*;
@@ -2866,10 +2866,17 @@
      */
     @PostMapping("/elders/records/page")
     R pageQueryEldersAuthRecord(@RequestBody  PageEldersAuthRecordDTO pageEldersAuthElderlyDTO);
-	
+    /**
+     * description 批量保存重点人群人员信息
+     *
+     * @param list 重点人群信息
+     * @return R  保存结果
+     * @author manailin
+     * @date 2021/6/10 17:00
+     */
 	@PostMapping("/key_person/batch/save")
     R saveBatchKeyPerson(@RequestBody List<KeyPersonInfoDTO> list);
-	
+
 	@GetMapping("/screen/population/statistic")
     R statistic(@RequestParam("communityId")Long communityId);
 
@@ -2887,7 +2894,7 @@
 
     @PostMapping("/elders/getAuthHistoryExport")
     R getAuthHistoryExport(@RequestBody PageEldersAuthHistoryDTO pageEldersAuthElderlyDTO);
-	
+
 	@GetMapping("/screen/work/neighborCircle")
     R statisticNeighborCircle(@RequestParam("communityId") Long communityId);
 
@@ -2950,7 +2957,7 @@
      */
     @GetMapping("/screen/getScreenCivil")
     R getScreenCivil(@RequestParam("communityId")Long communityId);
-	
+
 	/**
      * 大屏统计邻里圈
      */
@@ -2997,4 +3004,31 @@
      */
     @GetMapping("/screen/work/workCount")
     R workCount(@RequestParam("communityId")Long communityId);
+
+	/**
+     * description 批量保存残疾人人员信息
+     *
+     * @param list 疾人信息列表
+     * @return R  保存结果
+     * @author manailin
+     * @date 2021/6/10 17:00
+     */
+    @PostMapping("/disable_person/batch/save")
+    R saveBatchDisabledPersons(@RequestBody List<DisabledPersonsDTO> list);
+
+    /**
+     * 获取社区网格
+     * @param communityId   社区id
+     * @return  网格数据
+     */
+    @GetMapping("/screen/getScreenGirds")
+    R getScreenGirds(@RequestParam("communityId")Long communityId);
+
+    /**
+     * 事件大屏查询事件详情
+     * @param eventDetailDTO    请求参数
+     * @return  事件详情
+     */
+    @PostMapping("/screen/getScreenEventDetail")
+    R getScreenEventDetail(@RequestBody BigScreenEventDetailDTO eventDetailDTO);
 }

--
Gitblit v1.7.1