| | |
| | | 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 { |
| | | |
| | |
| | | * @return |
| | | */ |
| | | R saveComMngCar(ComMngCarSaveDTO comMngCarSaveDTO); |
| | | |
| | | /** |
| | | * 删除车辆信息 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | R deleteComMngCar(Long id); |
| | | |
| | | /** |
| | | * 批量导入车辆信息 |
| | | * @param list |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | R listSaveMngCarExcelVO(List<ComMngCarExcelVO> list, Long communityId); |
| | | } |