riku
2019-09-11 a0694aba52b4fb590039ff69e1625938ebef1041
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(userId: String, thresholdValueVo: ThresholdValueVo): Boolean
 
    /**
     * 更新
     */
    fun update(userId: String, thresholdValueVo: ThresholdValueVo): Boolean
 
    /**
     * 根据vin码获取对应阈值
     */
    fun getDataByVinCode(vinCode: String): ThresholdValueVo?
 
}