1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)
    }
 
}