From 68d8b72a646b4022e8a842f153ba9475e74803bc Mon Sep 17 00:00:00 2001
From: DESKTOP-71BH0QO\L、ming <172680469@qq.com>
Date: 星期一, 29 三月 2021 16:23:41 +0800
Subject: [PATCH] ADD:实有房屋相关接口

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java
index e81f08f..e792c30 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java
@@ -2,6 +2,7 @@
 
 import com.panzhihua.common.model.dtos.community.PageComMngVillageDTO;
 import com.panzhihua.common.model.vos.R;
+import com.panzhihua.common.model.vos.community.ComMngVillageServeExcelVO;
 import com.panzhihua.common.model.vos.community.ComMngVillageVO;
 
 import java.util.List;
@@ -13,7 +14,6 @@
 public interface ComMngVillageService {
     /**
      * 添加实有房屋
-     *
      * @param comMngVillageVO 实有房屋
      * @return 新增结果
      */
@@ -21,7 +21,6 @@
 
     /**
      * 查询实有房屋
-     *
      * @param comMngVillageVO 登录人的经纬度、或者指定区域的社区
      * @return 社区集合
      */
@@ -29,7 +28,6 @@
 
     /**
      * 分页查询实有房屋
-     *
      * @param pageComMngVillageDTO 查询参数
      * @return 分页集合
      */
@@ -37,9 +35,16 @@
 
     /**
      * 删除实有房屋
-     *
      * @param Ids 实有房屋ids
      * @return 删除结果
      */
     R delecComActVillage(List<Long> Ids);
+
+    /**
+     * 批量导入实有房屋
+     * @param list
+     * @param communityId
+     * @return
+     */
+    R listSaveVillage(List<ComMngVillageServeExcelVO> list, Long communityId);
 }

--
Gitblit v1.7.1