提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.enumeration; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
|
|
6 |
/** |
|
7 |
* 车辆状态 |
|
8 |
* |
|
9 |
* @author : 260611 |
|
10 |
* @since : Created in 2021/10/19 20:00 |
|
11 |
*/ |
|
12 |
public class EM_CITYMOTOR_STATUS extends NetSDKLib.SdkStructure { |
|
13 |
|
|
14 |
/** |
|
15 |
* 未知 |
|
16 |
*/ |
|
17 |
public static final int EM_CITYMOTOR_STATUS_UNKNOWN = 0; |
|
18 |
/** |
|
19 |
* 驶入 |
|
20 |
*/ |
|
21 |
public static final int EM_CITYMOTOR_STATUS_DRIVE_IN = 1; |
|
22 |
/** |
|
23 |
* 驶离 |
|
24 |
*/ |
|
25 |
public static final int EM_CITYMOTOR_STATUS_DRIVE_OUT = 2; |
|
26 |
} |