riku
2019-09-05 197d6766d056fda4fdf9e1f9ee26de9f9a480ef5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.flightfeather.obd.lightshare.service
 
import com.flightfeather.obd.lightshare.bean.ObdDataVo
 
/**
 * @author riku
 * Date: 2019/8/27
 */
interface ObdDataService {
 
    /**
     * 根据vin码获取对应数据
     */
    fun getDataByVinCode(vinCode: String, pageNum: Int?, pageSize: Int?): MutableList<ObdDataVo>
 
}