package com.muyu.analyze.mapper; import com.muyu.business.domain.Fence; import com.muyu.system.common.domain.Car; import com.muyu.system.common.domain.VehicleData; import org.apache.ibatis.annotations.Mapper; import java.util.ArrayList; import java.util.List; /** * @ProjectName: cloud-vehicles * @PackageName: com.muyu.analyze.mapper * @Description TODO * @Author HuangDaJu * @Date 2024/4/4 09:48 * @Version 1.0 */ @Mapper public interface VehicleMapper{ Boolean addVehicleStoredEvent(ArrayList list); List selectFenceList(); Car selectCarList(String vin); List selectCarMarking(Integer markingId); }