package com.ruoyi.collect.service; import com.ruoyi.collect.domain.*; import com.ruoyi.common.core.domain.R; import java.util.Date; import java.util.List; public interface CarService { R> carList(Car car); R> findByType(); R> findByFirm(); R addCar(Car car); R deleteCar(Integer carId); R findByCar(Integer carId); R updateCar(Car car); R startIsCar(String carVin); R> showCarRecord(); void addRecord(String vin, Long datetime); void endIsCar(String vin); void endCarRecord(CarRecord carRecord); R showCarRecordById(Integer recordId); }