From 2e64c232ab6b51b2cecf1ee96e1e9b709234f326 Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期六, 21 八月 2021 16:35:14 +0800
Subject: [PATCH] 随手拍改版接口开发

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java
index 2d91271..ebf5a84 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java
@@ -2,8 +2,13 @@
 
 import com.panzhihua.common.model.dtos.community.ComMngCarAppletDTO;
 import com.panzhihua.common.model.dtos.community.ComMngCarSaveDTO;
+import com.panzhihua.common.model.dtos.community.ExportComMngCarExcelDTO;
 import com.panzhihua.common.model.dtos.community.PageComMngCarDTO;
 import com.panzhihua.common.model.vos.R;
+import com.panzhihua.common.model.vos.community.ComMngCarExcelVO;
+import org.springframework.web.bind.annotation.PostMapping;
+
+import java.util.List;
 
 public interface ComMngCarService {
 
@@ -34,4 +39,27 @@
      * @return
      */
     R saveComMngCar(ComMngCarSaveDTO comMngCarSaveDTO);
+
+    /**
+     * 删除车辆信息
+     * @param id
+     * @return
+     */
+    R deleteComMngCar(Long id);
+
+    /**
+     * 批量导入车辆信息
+     * @param list
+     * @param communityId
+     * @return
+     */
+    R listSaveMngCarExcelVO(List<ComMngCarExcelVO> list, Long communityId);
+
+    /**
+     * 车辆导出
+     *
+     * @param exportComMngCarExcelDTO
+     * @return
+     */
+    R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO);
 }

--
Gitblit v1.7.1