提交 | 用户 | 时间
|
ce910c
|
1 |
package com.netsdk.lib.enumeration; |
H |
2 |
|
|
3 |
import com.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
|
|
6 |
/** |
|
7 |
* 标准车辆类型 |
|
8 |
* |
|
9 |
* @author : 260611 |
|
10 |
* @since : Created in 2021/10/19 20:21 |
|
11 |
*/ |
|
12 |
public class EM_STANDARD_VEHICLE_TYPE extends NetSDKLib.SdkStructure { |
|
13 |
|
|
14 |
/** |
|
15 |
* 未知 |
|
16 |
*/ |
|
17 |
public static final int EM_STANDARD_VEHICLE_UNKNOWN = 0; |
|
18 |
/** |
|
19 |
* 机动车 |
|
20 |
*/ |
|
21 |
public static final int EM_STANDARD_VEHICLE_MOTOR = 1; |
|
22 |
/** |
|
23 |
* 公交车 |
|
24 |
*/ |
|
25 |
public static final int EM_STANDARD_VEHICLE_BUS = 2; |
|
26 |
/** |
|
27 |
* 无牌机动车 |
|
28 |
*/ |
|
29 |
public static final int EM_STANDARD_VEHICLE_UNLICENSED_MOTOR = 3; |
|
30 |
/** |
|
31 |
* 大型汽车 |
|
32 |
*/ |
|
33 |
public static final int EM_STANDARD_VEHICLE_LARGE_CAR = 4; |
|
34 |
/** |
|
35 |
* 小型汽车 |
|
36 |
*/ |
|
37 |
public static final int EM_STANDARD_VEHICLE_MICRO_CAR = 5; |
|
38 |
/** |
|
39 |
* 使馆汽车 |
|
40 |
*/ |
|
41 |
public static final int EM_STANDARD_VEHICLE_EMBASSY_CAR = 6; |
|
42 |
/** |
|
43 |
* 领馆汽车 |
|
44 |
*/ |
|
45 |
public static final int EM_STANDARD_VEHICLE_MARGINAL_CAR = 7; |
|
46 |
/** |
|
47 |
* 境外汽车 |
|
48 |
*/ |
|
49 |
public static final int EM_STANDARD_VEHICLE_AREAOUT_CAR = 8; |
|
50 |
/** |
|
51 |
* 外籍汽车 |
|
52 |
*/ |
|
53 |
public static final int EM_STANDARD_VEHICLE_FOREIGN_CAR = 9; |
|
54 |
/** |
|
55 |
* 农用运输车 |
|
56 |
*/ |
|
57 |
public static final int EM_STANDARD_VEHICLE_FARM_TRANS_CAR = 10; |
|
58 |
/** |
|
59 |
* 拖拉机 |
|
60 |
*/ |
|
61 |
public static final int EM_STANDARD_VEHICLE_TRACTOR = 11; |
|
62 |
/** |
|
63 |
* 挂车 |
|
64 |
*/ |
|
65 |
public static final int EM_STANDARD_VEHICLE_TRAILER = 12; |
|
66 |
/** |
|
67 |
* 教练汽车 |
|
68 |
*/ |
|
69 |
public static final int EM_STANDARD_VEHICLE_COACH_CAR = 13; |
|
70 |
/** |
|
71 |
* 试验汽车 |
|
72 |
*/ |
|
73 |
public static final int EM_STANDARD_VEHICLE_TRIAL_CAR = 14; |
|
74 |
/** |
|
75 |
* 临时入境汽车 |
|
76 |
*/ |
|
77 |
public static final int EM_STANDARD_VEHICLE_TEMPORARYENTRY_CAR = 15; |
|
78 |
/** |
|
79 |
* 临时入境摩托 |
|
80 |
*/ |
|
81 |
public static final int EM_STANDARD_VEHICLE_TEMPORARYENTRY_MOTORCYCLE = 16; |
|
82 |
/** |
|
83 |
* 临时行驶车 |
|
84 |
*/ |
|
85 |
public static final int EM_STANDARD_VEHICLE_TEMPORARY_STEER_CAR = 17; |
|
86 |
/** |
|
87 |
* 大货车 |
|
88 |
*/ |
|
89 |
public static final int EM_STANDARD_VEHICLE_LARGE_TRUCK = 18; |
|
90 |
/** |
|
91 |
* 中货车 |
|
92 |
*/ |
|
93 |
public static final int EM_STANDARD_VEHICLE_MID_TRUCK = 19; |
|
94 |
/** |
|
95 |
* 小货车 |
|
96 |
*/ |
|
97 |
public static final int EM_STANDARD_VEHICLE_MICRO_TRUCK = 20; |
|
98 |
/** |
|
99 |
* 面包车 |
|
100 |
*/ |
|
101 |
public static final int EM_STANDARD_VEHICLE_MICROBUS = 21; |
|
102 |
/** |
|
103 |
* 轿车 |
|
104 |
*/ |
|
105 |
public static final int EM_STANDARD_VEHICLE_SALOON_CAR = 22; |
|
106 |
/** |
|
107 |
* 小轿车 |
|
108 |
*/ |
|
109 |
public static final int EM_STANDARD_VEHICLE_CARRIAGE = 23; |
|
110 |
/** |
|
111 |
* 微型轿车 |
|
112 |
*/ |
|
113 |
public static final int EM_STANDARD_VEHICLE_MINI_CARRIAGE = 24; |
|
114 |
/** |
|
115 |
* SUV或者MPV |
|
116 |
*/ |
|
117 |
public static final int EM_STANDARD_VEHICLE_SUV_MPV = 25; |
|
118 |
/** |
|
119 |
* SUV |
|
120 |
*/ |
|
121 |
public static final int EM_STANDARD_VEHICLE_SUV = 26; |
|
122 |
/** |
|
123 |
* MPV |
|
124 |
*/ |
|
125 |
public static final int EM_STANDARD_VEHICLE_MPV = 27; |
|
126 |
/** |
|
127 |
* 客车 |
|
128 |
*/ |
|
129 |
public static final int EM_STANDARD_VEHICLE_PASSENGER_CAR = 28; |
|
130 |
/** |
|
131 |
* 大客车 |
|
132 |
*/ |
|
133 |
public static final int EM_STANDARD_VEHICLE_MOTOR_BUS = 29; |
|
134 |
/** |
|
135 |
* 中客车 |
|
136 |
*/ |
|
137 |
public static final int EM_STANDARD_VEHICLE_MID_PASSENGER_CAR = 30; |
|
138 |
/** |
|
139 |
* 小客车 |
|
140 |
*/ |
|
141 |
public static final int EM_STANDARD_VEHICLE_MINI_BUS = 31; |
|
142 |
/** |
|
143 |
* 皮卡车 |
|
144 |
*/ |
|
145 |
public static final int EM_STANDARD_VEHICLE_PICKUP = 32; |
|
146 |
/** |
|
147 |
* 油罐车 |
|
148 |
*/ |
|
149 |
public static final int EM_STANDARD_VEHICLE_OILTANK_TRUCK = 33; |
|
150 |
} |