1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.flightfeather.obd.lightshare.bean
 
/**
 * @author riku
 * Date: 2019/10/25
 */
class VehicleInfoVo : BaseJson() {
    var id: Int? = null
 
    var obdDeviceCode: String? = null
 
    var obdVin: String? = null
 
    var obdLicencePlate: String? = null
 
    /**
     * 0: 集卡; 1:渣土车
     */
    var obdVehicleType: Int? = null
}