From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 14 三月 2025 11:27:47 +0800
Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整
---
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 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..863259a 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,12 +1,19 @@
package com.panzhihua.service_community.service;
+import java.util.List;
+
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;
public interface ComMngCarService {
/**
* 小程序端:添加车辆信息
+ *
* @param comCvtBusinessDTO
* @return
*/
@@ -14,8 +21,50 @@
/**
* 小程序用户车辆列表
+ *
* @param userId
* @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);
+
+ /**
+ * 车辆导出
+ *
+ * @param exportComMngCarExcelDTO
+ * @return
+ */
+ R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO);
}
--
Gitblit v1.7.1