package com.supervision.web.carGateManage.mapper; import com.supervision.web.carGateManage.entity.CarInfo; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface CarInfoMapper { List getCarList(); int countCars(); int insertCar(CarInfo carInfo); int updateCar(CarInfo carInfo); int deleteCar(Long id); }