src/main/kotlin/com/flightfeather/obd/repository/DataStreamRepository.kt
@@ -1,5 +1,6 @@ package com.flightfeather.obd.repository import com.flightfeather.obd.domain.entity.DataStream import com.flightfeather.obd.lightshare.bean.DataStreamVo import com.flightfeather.obd.lightshare.bean.LatLngVo import com.flightfeather.obd.socket.bean.ObdPackageData @@ -26,7 +27,7 @@ fun getDataStreamCount(deviceCode: String, startTime: String?, endTime: String?): Int /** * 根据终端设备码获取最新经纬度 * 获取一辆车最新的一条状态信息 */ fun getCoordinate(deviceCode: String): LatLngVo fun getLatestDataStream(deviceCode: String): DataStream? }