package com.flightfeather.obd.lightshare.service.impl
|
|
import com.flightfeather.obd.lightshare.bean.ObdDataVo
|
import com.flightfeather.obd.lightshare.service.ObdDataService
|
import com.flightfeather.obd.repository.ObdDataRepository
|
import org.springframework.stereotype.Service
|
|
/**
|
* @author riku
|
* Date: 2019/8/27
|
*/
|
@Service
|
class ObdDataServiceImpl(val obdDataRepository: ObdDataRepository) : ObdDataService {
|
|
override fun getDataByVinCode(vinCode: String, pageNum: Int?, pageSize: Int?): MutableList<ObdDataVo> {
|
return obdDataRepository.getDataByVinCode(vinCode, pageNum, pageSize)
|
}
|
|
}
|