1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.flightfeather.obd.socket.bean
|
| import java.util.*
| import com.flightfeather.obd.socket.eunm.ObdCommandUnit
|
| /**
| * @author riku
| * Date: 2019/9/12
| * 补发信息与实时信息内容一致 @see [RealTimeData]
| * 数据类型 @see [ObdCommandUnit.ReplacementData]
| */
| open class ReplacementData (
| time: Date?,
| serialNum: Int?
| ): DataUnit(time, serialNum)
|
|