From 10df7e29b51d6a2efacc83d870856f57d97a9b66 Mon Sep 17 00:00:00 2001 From: yanghui <2536613402@qq.com> Date: 星期一, 24 十月 2022 13:48:24 +0800 Subject: [PATCH] #feat 修改别名 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java | 19 +++++++++++++++++-- 1 files changed, 17 insertions(+), 2 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 50d3245..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,17 +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; - -import java.util.List; public interface ComMngCarService { /** * 小程序端:添加车辆信息 + * * @param comCvtBusinessDTO * @return */ @@ -19,6 +21,7 @@ /** * 小程序用户车辆列表 + * * @param userId * @return */ @@ -26,6 +29,7 @@ /** * 分页查询车辆管理列表 + * * @param pageComMngCarDTO * @return */ @@ -33,6 +37,7 @@ /** * 新增或修改车辆信息 + * * @param comMngCarSaveDTO * @return */ @@ -40,6 +45,7 @@ /** * 删除车辆信息 + * * @param id * @return */ @@ -47,9 +53,18 @@ /** * 批量导入车辆信息 + * * @param list * @param communityId * @return */ R listSaveMngCarExcelVO(List<ComMngCarExcelVO> list, Long communityId); + + /** + * 车辆导出 + * + * @param exportComMngCarExcelDTO + * @return + */ + R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO); } -- Gitblit v1.7.1