From 2eea3290641657d2ee13edd90d27f8b2ec01c209 Mon Sep 17 00:00:00 2001
From: 罗yu 元桥 <2376770955@qq.com>
Date: 星期六, 08 五月 2021 18:23:48 +0800
Subject: [PATCH] Merge branch 'test' into 'master'

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java |   34 ++++++++++++++++++++++++++++++++++
 1 files changed, 34 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 4a7bf85..50d3245 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
@@ -1,7 +1,12 @@
 package com.panzhihua.service_community.service;
 
 import com.panzhihua.common.model.dtos.community.ComMngCarAppletDTO;
+import com.panzhihua.common.model.dtos.community.ComMngCarSaveDTO;
+import com.panzhihua.common.model.dtos.community.PageComMngCarDTO;
 import com.panzhihua.common.model.vos.R;
+import com.panzhihua.common.model.vos.community.ComMngCarExcelVO;
+
+import java.util.List;
 
 public interface ComMngCarService {
 
@@ -18,4 +23,33 @@
      * @return
      */
     R userComMngCarList(Long userId);
+
+    /**
+     * 分页查询车辆管理列表
+     * @param pageComMngCarDTO
+     * @return
+     */
+    R pageQueryComMngCar(PageComMngCarDTO pageComMngCarDTO);
+
+    /**
+     * 新增或修改车辆信息
+     * @param comMngCarSaveDTO
+     * @return
+     */
+    R saveComMngCar(ComMngCarSaveDTO comMngCarSaveDTO);
+
+    /**
+     * 删除车辆信息
+     * @param id
+     * @return
+     */
+    R deleteComMngCar(Long id);
+
+    /**
+     * 批量导入车辆信息
+     * @param list
+     * @param communityId
+     * @return
+     */
+    R listSaveMngCarExcelVO(List<ComMngCarExcelVO> list, Long communityId);
 }

--
Gitblit v1.7.1