riku
2019-09-15 4d44ed185203088052b10a8d1e3526fcbbc88331
src/main/kotlin/com/flightfeather/obd/repository/ObdDataRepository.kt
@@ -3,6 +3,7 @@
import com.flightfeather.obd.domain.entity.ObdData
import com.flightfeather.obd.domain.mapper.ObdDataMapper
import com.flightfeather.obd.lightshare.bean.ObdDataVo
import com.flightfeather.obd.socket.bean.ObdPackageData
import org.springframework.beans.BeanUtils
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.stereotype.Component
@@ -23,4 +24,7 @@
     * 通过汽车vin码获取最新数据
     */
    fun getDataByVinCode(vinCode: String, pageNum: Int?, pageSize: Int?): MutableList<ObdDataVo>
    fun saveObdData(packageData: ObdPackageData):Boolean
}