riku
2019-09-05 197d6766d056fda4fdf9e1f9ee26de9f9a480ef5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.flightfeather.obd.lightshare.service
 
import com.flightfeather.obd.lightshare.bean.ThresholdValueVo
 
/**
 * @author riku
 * Date: 2019/9/5
 */
interface ObdThresholdValueService {
 
    /**
     * 保存
     */
    fun save(thresholdValueVo: ThresholdValueVo): Boolean
 
    /**
     * 更新
     */
    fun update(thresholdValueVo: ThresholdValueVo): Boolean
 
    /**
     * 根据vin码获取对应阈值
     */
    fun getDataByVinCode(vinCode: String): ThresholdValueVo?
 
}