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.uav.lightshare.service
|
| import com.flightfeather.uav.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?
|
| }
|
|