From ff2dfdc73fb774f4421bf7bee3147858367f3ec5 Mon Sep 17 00:00:00 2001
From: cedoo <chendong@inwhoop.com>
Date: 星期二, 30 三月 2021 15:27:28 +0800
Subject: [PATCH] add: 实有单位归属地查询

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 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 9f63334..659e3de 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
@@ -1337,6 +1337,14 @@
     @PostMapping("/common/data/car/import")
     R listSaveMngCarExcelVO(@RequestBody List<ComMngCarExcelVO> list, @RequestParam("communityId") Long communityId);
 
+    /**
+     * 分页查询实有人口
+     * @param comMngPopulationVO 查询参数
+     * @return 分页集合
+     */
+    @PostMapping("/common/data/population/page")
+    R pagePopulation(ComMngPopulationDTO comMngPopulationVO);
+
 
     /**
      * 社区后台实有单位管理列表
@@ -1373,6 +1381,16 @@
      */
     @GetMapping("/common/data/company/detail")
     R detailComMngRealCompany(@RequestParam(value = "id") Long id);
+
+
+    /**
+     * 实有单位归属地
+     *
+     * @param comMngRealCompanyBelongsDTO
+     * @return
+     */
+    @GetMapping("/common/data/company/belongs")
+    R belongsComMngRealCompany(@RequestBody ComMngRealCompanyBelongsDTO comMngRealCompanyBelongsDTO);
 
     /**
      * 批量导入实有单位
@@ -1560,4 +1578,14 @@
      */
     @PostMapping("/village/import")
     R listSaveVillageServeExcelVO(@RequestBody List<ComMngVillageServeExcelVO> list, @RequestParam(value = "communityId") Long communityId);
+
+
+    /**
+     * 批量导入实有人口
+     * @param list
+     * @param communityId
+     * @return
+     */
+    @PostMapping("/population/import")
+    R listSavePopulationServeExcelVO(List<ComMngPopulationServeExcelVO> list,@RequestParam(value = "communityId")  Long communityId);
 }

--
Gitblit v1.7.1