From 259512005923831d1221bd49568751bf519dc020 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期三, 18 九月 2019 23:18:10 +0800 Subject: [PATCH] 1. 修复保存obd 信息体方法未被调用的问题 --- src/main/kotlin/com/flightfeather/obd/repository/ObdDataRepository.kt | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/obd/repository/ObdDataRepository.kt b/src/main/kotlin/com/flightfeather/obd/repository/ObdDataRepository.kt index f600d4f..97e678d 100644 --- a/src/main/kotlin/com/flightfeather/obd/repository/ObdDataRepository.kt +++ b/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 @@ -17,10 +18,13 @@ /** * 瀛樺偍obd鏁版嵁 */ - fun saveObdData(data:ObdDataVo) + fun saveObdData(data: ObdDataVo): Boolean /** * 閫氳繃姹借溅vin鐮佽幏鍙栨渶鏂版暟鎹� */ fun getDataByVinCode(vinCode: String, pageNum: Int?, pageSize: Int?): MutableList<ObdDataVo> + + fun saveObdData(packageData: ObdPackageData):Boolean + } \ No newline at end of file -- Gitblit v1.9.3