提交 | 用户 | 时间
|
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:21 |
|
11 |
*/ |
|
12 |
public class EM_CAR_TYPE extends NetSDKLib.SdkStructure { |
|
13 |
|
|
14 |
/** |
|
15 |
* 其他车辆 |
|
16 |
*/ |
|
17 |
public static final int EM_CAR_0 = 0; |
|
18 |
/** |
|
19 |
* 大型普通客车 |
|
20 |
*/ |
|
21 |
public static final int EM_CAR_1 = 1; |
|
22 |
/** |
|
23 |
* 大型双层客车 |
|
24 |
*/ |
|
25 |
public static final int EM_CAR_2 = 2; |
|
26 |
/** |
|
27 |
* 大型卧铺客车 |
|
28 |
*/ |
|
29 |
public static final int EM_CAR_3 = 3; |
|
30 |
/** |
|
31 |
* 大型铰接客车 |
|
32 |
*/ |
|
33 |
public static final int EM_CAR_4 = 4; |
|
34 |
/** |
|
35 |
* 大型越野客车 |
|
36 |
*/ |
|
37 |
public static final int EM_CAR_5 = 5; |
|
38 |
/** |
|
39 |
* 大型轿车 |
|
40 |
*/ |
|
41 |
public static final int EM_CAR_6 = 6; |
|
42 |
/** |
|
43 |
* 大型专用客车 |
|
44 |
*/ |
|
45 |
public static final int EM_CAR_7 = 7; |
|
46 |
/** |
|
47 |
* 大型专用校车 |
|
48 |
*/ |
|
49 |
public static final int EM_CAR_8 = 8; |
|
50 |
/** |
|
51 |
* 中型普通客车 |
|
52 |
*/ |
|
53 |
public static final int EM_CAR_9 = 9; |
|
54 |
/** |
|
55 |
* 中型双层客车 |
|
56 |
*/ |
|
57 |
public static final int EM_CAR_10 = 10; |
|
58 |
/** |
|
59 |
* 中型卧铺客车 |
|
60 |
*/ |
|
61 |
public static final int EM_CAR_11 = 11; |
|
62 |
/** |
|
63 |
* 中型铰接客车 |
|
64 |
*/ |
|
65 |
public static final int EM_CAR_12 = 12; |
|
66 |
/** |
|
67 |
* 中型越野客车 |
|
68 |
*/ |
|
69 |
public static final int EM_CAR_13 = 13; |
|
70 |
/** |
|
71 |
* 中型轿车 |
|
72 |
*/ |
|
73 |
public static final int EM_CAR_14 = 14; |
|
74 |
/** |
|
75 |
* 中型专用客车 |
|
76 |
*/ |
|
77 |
public static final int EM_CAR_15 = 15; |
|
78 |
/** |
|
79 |
* 中型专用校车 |
|
80 |
*/ |
|
81 |
public static final int EM_CAR_16 = 16; |
|
82 |
/** |
|
83 |
* 小型普通客车 |
|
84 |
*/ |
|
85 |
public static final int EM_CAR_17 = 17; |
|
86 |
/** |
|
87 |
* 小型越野客车 |
|
88 |
*/ |
|
89 |
public static final int EM_CAR_18 = 18; |
|
90 |
/** |
|
91 |
* 小型轿车 |
|
92 |
*/ |
|
93 |
public static final int EM_CAR_19 = 19; |
|
94 |
/** |
|
95 |
* 小型专用客车 |
|
96 |
*/ |
|
97 |
public static final int EM_CAR_20 = 20; |
|
98 |
/** |
|
99 |
* 小型专用校车 |
|
100 |
*/ |
|
101 |
public static final int EM_CAR_21 = 21; |
|
102 |
/** |
|
103 |
* 小型面包车 |
|
104 |
*/ |
|
105 |
public static final int EM_CAR_22 = 22; |
|
106 |
/** |
|
107 |
* 微型普通客车 |
|
108 |
*/ |
|
109 |
public static final int EM_CAR_23 = 23; |
|
110 |
/** |
|
111 |
* 微型越野客车 |
|
112 |
*/ |
|
113 |
public static final int EM_CAR_24 = 24; |
|
114 |
/** |
|
115 |
* 微型轿车 |
|
116 |
*/ |
|
117 |
public static final int EM_CAR_25 = 25; |
|
118 |
/** |
|
119 |
* 微型面包车 |
|
120 |
*/ |
|
121 |
public static final int EM_CAR_26 = 26; |
|
122 |
/** |
|
123 |
* 重型半挂牵引车 |
|
124 |
*/ |
|
125 |
public static final int EM_CAR_27 = 27; |
|
126 |
/** |
|
127 |
* 重型全挂牵引车 |
|
128 |
*/ |
|
129 |
public static final int EM_CAR_28 = 28; |
|
130 |
/** |
|
131 |
* 中型半挂牵引车 |
|
132 |
*/ |
|
133 |
public static final int EM_CAR_29 = 29; |
|
134 |
/** |
|
135 |
* 中型全挂牵引车 |
|
136 |
*/ |
|
137 |
public static final int EM_CAR_30 = 30; |
|
138 |
/** |
|
139 |
* 轻型半挂牵引车 |
|
140 |
*/ |
|
141 |
public static final int EM_CAR_31 = 31; |
|
142 |
/** |
|
143 |
* 轻型全挂牵引车 |
|
144 |
*/ |
|
145 |
public static final int EM_CAR_32 = 32; |
|
146 |
/** |
|
147 |
* 大型非载货专项作业车 |
|
148 |
*/ |
|
149 |
public static final int EM_CAR_33 = 33; |
|
150 |
/** |
|
151 |
* 大型载货专项作业车 |
|
152 |
*/ |
|
153 |
public static final int EM_CAR_34 = 34; |
|
154 |
/** |
|
155 |
* 中型非载货专项作业车 |
|
156 |
*/ |
|
157 |
public static final int EM_CAR_35 = 35; |
|
158 |
/** |
|
159 |
* 中型载货专项作业车 |
|
160 |
*/ |
|
161 |
public static final int EM_CAR_36 = 36; |
|
162 |
/** |
|
163 |
* 小型非载货专项作业车 |
|
164 |
*/ |
|
165 |
public static final int EM_CAR_37 = 37; |
|
166 |
/** |
|
167 |
* 小型载货专项作业车 |
|
168 |
*/ |
|
169 |
public static final int EM_CAR_38 = 38; |
|
170 |
/** |
|
171 |
* 微型非载货专项作业车 |
|
172 |
*/ |
|
173 |
public static final int EM_CAR_39 = 39; |
|
174 |
/** |
|
175 |
* 微型载货专项作业车 |
|
176 |
*/ |
|
177 |
public static final int EM_CAR_40 = 40; |
|
178 |
/** |
|
179 |
* 重型非载货专项作业车 |
|
180 |
*/ |
|
181 |
public static final int EM_CAR_41 = 41; |
|
182 |
/** |
|
183 |
* 重型载货专项作业车 |
|
184 |
*/ |
|
185 |
public static final int EM_CAR_42 = 42; |
|
186 |
/** |
|
187 |
* 轻型非载货专项作业车 |
|
188 |
*/ |
|
189 |
public static final int EM_CAR_43 = 43; |
|
190 |
/** |
|
191 |
* 轻型载货专项作业车 |
|
192 |
*/ |
|
193 |
public static final int EM_CAR_44 = 44; |
|
194 |
/** |
|
195 |
* 普通正三轮摩托车 |
|
196 |
*/ |
|
197 |
public static final int EM_CAR_45 = 45; |
|
198 |
/** |
|
199 |
* 轻便正三轮摩托车 |
|
200 |
*/ |
|
201 |
public static final int EM_CAR_46 = 46; |
|
202 |
/** |
|
203 |
* 正三轮载客摩托车 |
|
204 |
*/ |
|
205 |
public static final int EM_CAR_47 = 47; |
|
206 |
/** |
|
207 |
* 正三轮载货摩托车 |
|
208 |
*/ |
|
209 |
public static final int EM_CAR_48 = 48; |
|
210 |
/** |
|
211 |
* 侧三轮摩托车 |
|
212 |
*/ |
|
213 |
public static final int EM_CAR_49 = 49; |
|
214 |
/** |
|
215 |
* 普通二轮摩托车 |
|
216 |
*/ |
|
217 |
public static final int EM_CAR_50 = 50; |
|
218 |
/** |
|
219 |
* 轻便二轮摩托车 |
|
220 |
*/ |
|
221 |
public static final int EM_CAR_51 = 51; |
|
222 |
/** |
|
223 |
* 无轨电车 |
|
224 |
*/ |
|
225 |
public static final int EM_CAR_52 = 52; |
|
226 |
/** |
|
227 |
* 有轨电车 |
|
228 |
*/ |
|
229 |
public static final int EM_CAR_53 = 53; |
|
230 |
/** |
|
231 |
* 三轮汽车 |
|
232 |
*/ |
|
233 |
public static final int EM_CAR_54 = 54; |
|
234 |
/** |
|
235 |
* 轮式装载机械 |
|
236 |
*/ |
|
237 |
public static final int EM_CAR_55 = 55; |
|
238 |
/** |
|
239 |
* 轮式挖掘机械 |
|
240 |
*/ |
|
241 |
public static final int EM_CAR_56 = 56; |
|
242 |
/** |
|
243 |
* 轮式平地机械 |
|
244 |
*/ |
|
245 |
public static final int EM_CAR_57 = 57; |
|
246 |
/** |
|
247 |
* 重型普通货车 |
|
248 |
*/ |
|
249 |
public static final int EM_CAR_58 = 58; |
|
250 |
/** |
|
251 |
* 重型厢式货车 |
|
252 |
*/ |
|
253 |
public static final int EM_CAR_59 = 59; |
|
254 |
/** |
|
255 |
* 重型封闭货车 |
|
256 |
*/ |
|
257 |
public static final int EM_CAR_60 = 60; |
|
258 |
/** |
|
259 |
* 重型罐式货车 |
|
260 |
*/ |
|
261 |
public static final int EM_CAR_61 = 61; |
|
262 |
/** |
|
263 |
* 重型平板货车 |
|
264 |
*/ |
|
265 |
public static final int EM_CAR_62 = 62; |
|
266 |
/** |
|
267 |
* 重型集装箱车 |
|
268 |
*/ |
|
269 |
public static final int EM_CAR_63 = 63; |
|
270 |
/** |
|
271 |
* 重型自卸货车 |
|
272 |
*/ |
|
273 |
public static final int EM_CAR_64 = 64; |
|
274 |
/** |
|
275 |
* 重型特殊结构货车 |
|
276 |
*/ |
|
277 |
public static final int EM_CAR_65 = 65; |
|
278 |
/** |
|
279 |
* 重型仓栅式货车 |
|
280 |
*/ |
|
281 |
public static final int EM_CAR_66 = 66; |
|
282 |
/** |
|
283 |
* 重型车辆运输车 |
|
284 |
*/ |
|
285 |
public static final int EM_CAR_67 = 67; |
|
286 |
/** |
|
287 |
* 重型厢式自卸货车 |
|
288 |
*/ |
|
289 |
public static final int EM_CAR_68 = 68; |
|
290 |
/** |
|
291 |
* 重型罐式自卸货车 |
|
292 |
*/ |
|
293 |
public static final int EM_CAR_69 = 69; |
|
294 |
/** |
|
295 |
* 重型平板自卸货车 |
|
296 |
*/ |
|
297 |
public static final int EM_CAR_70 = 70; |
|
298 |
/** |
|
299 |
* 重型集装箱自卸货车 |
|
300 |
*/ |
|
301 |
public static final int EM_CAR_71 = 71; |
|
302 |
/** |
|
303 |
* 重型特殊结构自卸货车 |
|
304 |
*/ |
|
305 |
public static final int EM_CAR_72 = 72; |
|
306 |
/** |
|
307 |
* 重型仓栅式自卸货车 |
|
308 |
*/ |
|
309 |
public static final int EM_CAR_73 = 73; |
|
310 |
/** |
|
311 |
* 中型普通货车 |
|
312 |
*/ |
|
313 |
public static final int EM_CAR_74 = 74; |
|
314 |
/** |
|
315 |
* 中型厢式货车 |
|
316 |
*/ |
|
317 |
public static final int EM_CAR_75 = 75; |
|
318 |
/** |
|
319 |
* 中型封闭货车 |
|
320 |
*/ |
|
321 |
public static final int EM_CAR_76 = 76; |
|
322 |
/** |
|
323 |
* 中型罐式货车 |
|
324 |
*/ |
|
325 |
public static final int EM_CAR_77 = 77; |
|
326 |
/** |
|
327 |
* 中型平板货车 |
|
328 |
*/ |
|
329 |
public static final int EM_CAR_78 = 78; |
|
330 |
/** |
|
331 |
* 中型集装箱车 |
|
332 |
*/ |
|
333 |
public static final int EM_CAR_79 = 79; |
|
334 |
/** |
|
335 |
* 中型自卸货车 |
|
336 |
*/ |
|
337 |
public static final int EM_CAR_80 = 80; |
|
338 |
/** |
|
339 |
* 中型特殊结构货车 |
|
340 |
*/ |
|
341 |
public static final int EM_CAR_81 = 81; |
|
342 |
/** |
|
343 |
* 中型仓栅式货车 |
|
344 |
*/ |
|
345 |
public static final int EM_CAR_82 = 82; |
|
346 |
/** |
|
347 |
* 中型车辆运输车 |
|
348 |
*/ |
|
349 |
public static final int EM_CAR_83 = 83; |
|
350 |
/** |
|
351 |
* 中型厢式自卸货车 |
|
352 |
*/ |
|
353 |
public static final int EM_CAR_84 = 84; |
|
354 |
/** |
|
355 |
* 中型罐式自卸货车 |
|
356 |
*/ |
|
357 |
public static final int EM_CAR_85 = 85; |
|
358 |
/** |
|
359 |
* 中型平板自卸货车 |
|
360 |
*/ |
|
361 |
public static final int EM_CAR_86 = 86; |
|
362 |
/** |
|
363 |
* 中型集装箱自卸货车 |
|
364 |
*/ |
|
365 |
public static final int EM_CAR_87 = 87; |
|
366 |
/** |
|
367 |
* 中型特殊结构自卸货车 |
|
368 |
*/ |
|
369 |
public static final int EM_CAR_88 = 88; |
|
370 |
/** |
|
371 |
* 中型仓栅式自卸货车 |
|
372 |
*/ |
|
373 |
public static final int EM_CAR_89 = 89; |
|
374 |
/** |
|
375 |
* 轻型普通货车 |
|
376 |
*/ |
|
377 |
public static final int EM_CAR_90 = 90; |
|
378 |
/** |
|
379 |
* 轻型厢式货车 |
|
380 |
*/ |
|
381 |
public static final int EM_CAR_91 = 91; |
|
382 |
/** |
|
383 |
* 轻型封闭货车 |
|
384 |
*/ |
|
385 |
public static final int EM_CAR_92 = 92; |
|
386 |
/** |
|
387 |
* 轻型罐式货车 |
|
388 |
*/ |
|
389 |
public static final int EM_CAR_93 = 93; |
|
390 |
/** |
|
391 |
* 轻型平板货车 |
|
392 |
*/ |
|
393 |
public static final int EM_CAR_94 = 94; |
|
394 |
/** |
|
395 |
* 轻型自卸货车 |
|
396 |
*/ |
|
397 |
public static final int EM_CAR_95 = 95; |
|
398 |
/** |
|
399 |
* 轻型特殊结构货车 |
|
400 |
*/ |
|
401 |
public static final int EM_CAR_96 = 96; |
|
402 |
/** |
|
403 |
* 轻型仓栅式货车 |
|
404 |
*/ |
|
405 |
public static final int EM_CAR_97 = 97; |
|
406 |
/** |
|
407 |
* 轻型车辆运输车 |
|
408 |
*/ |
|
409 |
public static final int EM_CAR_98 = 98; |
|
410 |
/** |
|
411 |
* 轻型厢式自卸货车 |
|
412 |
*/ |
|
413 |
public static final int EM_CAR_99 = 99; |
|
414 |
/** |
|
415 |
* 轻型罐式自卸货车 |
|
416 |
*/ |
|
417 |
public static final int EM_CAR_100 = 100; |
|
418 |
/** |
|
419 |
* 轻型平板自卸货车 |
|
420 |
*/ |
|
421 |
public static final int EM_CAR_101 = 101; |
|
422 |
/** |
|
423 |
* 轻型特殊结构自卸货车 |
|
424 |
*/ |
|
425 |
public static final int EM_CAR_102 = 102; |
|
426 |
/** |
|
427 |
* 轻型仓栅式自卸货车 |
|
428 |
*/ |
|
429 |
public static final int EM_CAR_103 = 103; |
|
430 |
/** |
|
431 |
* 微型普通货车 |
|
432 |
*/ |
|
433 |
public static final int EM_CAR_104 = 104; |
|
434 |
/** |
|
435 |
* 微型厢式货车 |
|
436 |
*/ |
|
437 |
public static final int EM_CAR_105 = 105; |
|
438 |
/** |
|
439 |
* 微型封闭货车 |
|
440 |
*/ |
|
441 |
public static final int EM_CAR_106 = 106; |
|
442 |
/** |
|
443 |
* 微型罐式货车 |
|
444 |
*/ |
|
445 |
public static final int EM_CAR_107 = 107; |
|
446 |
/** |
|
447 |
* 微型自卸货车 |
|
448 |
*/ |
|
449 |
public static final int EM_CAR_108 = 108; |
|
450 |
/** |
|
451 |
* 微型特殊结构货车 |
|
452 |
*/ |
|
453 |
public static final int EM_CAR_109 = 109; |
|
454 |
/** |
|
455 |
* 微型仓栅式货车 |
|
456 |
*/ |
|
457 |
public static final int EM_CAR_110 = 110; |
|
458 |
/** |
|
459 |
* 微型车辆运输车 |
|
460 |
*/ |
|
461 |
public static final int EM_CAR_111 = 111; |
|
462 |
/** |
|
463 |
* 微型厢式自卸货车 |
|
464 |
*/ |
|
465 |
public static final int EM_CAR_112 = 112; |
|
466 |
/** |
|
467 |
* 微型罐式自卸货车 |
|
468 |
*/ |
|
469 |
public static final int EM_CAR_113 = 113; |
|
470 |
/** |
|
471 |
* 微型特殊结构自卸货车 |
|
472 |
*/ |
|
473 |
public static final int EM_CAR_114 = 114; |
|
474 |
/** |
|
475 |
* 微型仓栅式自卸货车 |
|
476 |
*/ |
|
477 |
public static final int EM_CAR_115 = 115; |
|
478 |
/** |
|
479 |
* 普通低速货车 |
|
480 |
*/ |
|
481 |
public static final int EM_CAR_116 = 116; |
|
482 |
/** |
|
483 |
* 厢式低速货车 |
|
484 |
*/ |
|
485 |
public static final int EM_CAR_117 = 117; |
|
486 |
/** |
|
487 |
* 罐式低速货车 |
|
488 |
*/ |
|
489 |
public static final int EM_CAR_118 = 118; |
|
490 |
/** |
|
491 |
* 自卸低速货车 |
|
492 |
*/ |
|
493 |
public static final int EM_CAR_119 = 119; |
|
494 |
/** |
|
495 |
* 仓栅式低速货车 |
|
496 |
*/ |
|
497 |
public static final int EM_CAR_120 = 120; |
|
498 |
/** |
|
499 |
* 厢式自卸低速货车 |
|
500 |
*/ |
|
501 |
public static final int EM_CAR_121 = 121; |
|
502 |
/** |
|
503 |
* 罐式自卸低速货车 |
|
504 |
*/ |
|
505 |
public static final int EM_CAR_122 = 122; |
|
506 |
/** |
|
507 |
* 重型普通全挂车 |
|
508 |
*/ |
|
509 |
public static final int EM_CAR_123 = 123; |
|
510 |
/** |
|
511 |
* 重型厢式全挂车 |
|
512 |
*/ |
|
513 |
public static final int EM_CAR_124 = 124; |
|
514 |
/** |
|
515 |
* 重型罐式全挂车 |
|
516 |
*/ |
|
517 |
public static final int EM_CAR_125 = 125; |
|
518 |
/** |
|
519 |
* 重型平板全挂车 |
|
520 |
*/ |
|
521 |
public static final int EM_CAR_126 = 126; |
|
522 |
/** |
|
523 |
* 重型集装箱全挂车 |
|
524 |
*/ |
|
525 |
public static final int EM_CAR_127 = 127; |
|
526 |
/** |
|
527 |
* 重型自卸全挂车 |
|
528 |
*/ |
|
529 |
public static final int EM_CAR_128 = 128; |
|
530 |
/** |
|
531 |
* 重型仓栅式全挂车 |
|
532 |
*/ |
|
533 |
public static final int EM_CAR_129 = 129; |
|
534 |
/** |
|
535 |
* 重型旅居全挂车 |
|
536 |
*/ |
|
537 |
public static final int EM_CAR_130 = 130; |
|
538 |
/** |
|
539 |
* 重型专项作业全挂车 |
|
540 |
*/ |
|
541 |
public static final int EM_CAR_131 = 131; |
|
542 |
/** |
|
543 |
* 重型厢式自卸全挂车 |
|
544 |
*/ |
|
545 |
public static final int EM_CAR_132 = 132; |
|
546 |
/** |
|
547 |
* 重型罐式自卸全挂车 |
|
548 |
*/ |
|
549 |
public static final int EM_CAR_133 = 133; |
|
550 |
/** |
|
551 |
* 重型平板自卸全挂车 |
|
552 |
*/ |
|
553 |
public static final int EM_CAR_134 = 134; |
|
554 |
/** |
|
555 |
* 重型集装箱自卸全挂车 |
|
556 |
*/ |
|
557 |
public static final int EM_CAR_135 = 135; |
|
558 |
/** |
|
559 |
* 重型仓栅式自卸全挂车 |
|
560 |
*/ |
|
561 |
public static final int EM_CAR_136 = 136; |
|
562 |
/** |
|
563 |
* 重型专项作业自卸全挂车 |
|
564 |
*/ |
|
565 |
public static final int EM_CAR_137 = 137; |
|
566 |
/** |
|
567 |
* 中型普通全挂车 |
|
568 |
*/ |
|
569 |
public static final int EM_CAR_138 = 138; |
|
570 |
/** |
|
571 |
* 中型厢式全挂车 |
|
572 |
*/ |
|
573 |
public static final int EM_CAR_139 = 139; |
|
574 |
/** |
|
575 |
* 中型罐式全挂车 |
|
576 |
*/ |
|
577 |
public static final int EM_CAR_140 = 140; |
|
578 |
/** |
|
579 |
* 中型平板全挂车 |
|
580 |
*/ |
|
581 |
public static final int EM_CAR_141 = 141; |
|
582 |
/** |
|
583 |
* 中型集装箱全挂车 |
|
584 |
*/ |
|
585 |
public static final int EM_CAR_142 = 142; |
|
586 |
/** |
|
587 |
* 中型自卸全挂车 |
|
588 |
*/ |
|
589 |
public static final int EM_CAR_143 = 143; |
|
590 |
/** |
|
591 |
* 中型仓栅式全挂车 |
|
592 |
*/ |
|
593 |
public static final int EM_CAR_144 = 144; |
|
594 |
/** |
|
595 |
* 中型旅居全挂车 |
|
596 |
*/ |
|
597 |
public static final int EM_CAR_145 = 145; |
|
598 |
/** |
|
599 |
* 中型专项作业全挂车 |
|
600 |
*/ |
|
601 |
public static final int EM_CAR_146 = 146; |
|
602 |
/** |
|
603 |
* 中型厢式自卸全挂车 |
|
604 |
*/ |
|
605 |
public static final int EM_CAR_147 = 147; |
|
606 |
/** |
|
607 |
* 中型罐式自卸全挂车 |
|
608 |
*/ |
|
609 |
public static final int EM_CAR_148 = 148; |
|
610 |
/** |
|
611 |
* 中型平板自卸全挂车 |
|
612 |
*/ |
|
613 |
public static final int EM_CAR_149 = 149; |
|
614 |
/** |
|
615 |
* 中型集装箱自卸全挂车 |
|
616 |
*/ |
|
617 |
public static final int EM_CAR_150 = 150; |
|
618 |
/** |
|
619 |
* 中型仓栅式自卸全挂车 |
|
620 |
*/ |
|
621 |
public static final int EM_CAR_151 = 151; |
|
622 |
/** |
|
623 |
* 中型专项作业自卸全挂车 |
|
624 |
*/ |
|
625 |
public static final int EM_CAR_152 = 152; |
|
626 |
/** |
|
627 |
* 轻型普通全挂车 |
|
628 |
*/ |
|
629 |
public static final int EM_CAR_153 = 153; |
|
630 |
/** |
|
631 |
* 轻型厢式全挂车 |
|
632 |
*/ |
|
633 |
public static final int EM_CAR_154 = 154; |
|
634 |
/** |
|
635 |
* 轻型罐式全挂车 |
|
636 |
*/ |
|
637 |
public static final int EM_CAR_155 = 155; |
|
638 |
/** |
|
639 |
* 轻型平板全挂车 |
|
640 |
*/ |
|
641 |
public static final int EM_CAR_156 = 156; |
|
642 |
/** |
|
643 |
* 轻型自卸全挂车 |
|
644 |
*/ |
|
645 |
public static final int EM_CAR_157 = 157; |
|
646 |
/** |
|
647 |
* 轻型仓栅式全挂车 |
|
648 |
*/ |
|
649 |
public static final int EM_CAR_158 = 158; |
|
650 |
/** |
|
651 |
* 轻型旅居全挂车 |
|
652 |
*/ |
|
653 |
public static final int EM_CAR_159 = 159; |
|
654 |
/** |
|
655 |
* 轻型专项作业全挂车 |
|
656 |
*/ |
|
657 |
public static final int EM_CAR_160 = 160; |
|
658 |
/** |
|
659 |
* 轻型厢式自卸全挂车 |
|
660 |
*/ |
|
661 |
public static final int EM_CAR_161 = 161; |
|
662 |
/** |
|
663 |
* 轻型罐式自卸全挂车 |
|
664 |
*/ |
|
665 |
public static final int EM_CAR_162 = 162; |
|
666 |
/** |
|
667 |
* 轻型平板自卸全挂车 |
|
668 |
*/ |
|
669 |
public static final int EM_CAR_163 = 163; |
|
670 |
/** |
|
671 |
* 轻型集装箱自卸全挂车 |
|
672 |
*/ |
|
673 |
public static final int EM_CAR_164 = 164; |
|
674 |
/** |
|
675 |
* 轻型仓栅式自卸全挂车 |
|
676 |
*/ |
|
677 |
public static final int EM_CAR_165 = 165; |
|
678 |
/** |
|
679 |
* 轻型专项作业自卸全挂车 |
|
680 |
*/ |
|
681 |
public static final int EM_CAR_166 = 166; |
|
682 |
/** |
|
683 |
* 重型普通半挂车 |
|
684 |
*/ |
|
685 |
public static final int EM_CAR_167 = 167; |
|
686 |
/** |
|
687 |
* 重型厢式半挂车 |
|
688 |
*/ |
|
689 |
public static final int EM_CAR_168 = 168; |
|
690 |
/** |
|
691 |
* 重型罐式半挂车 |
|
692 |
*/ |
|
693 |
public static final int EM_CAR_169 = 169; |
|
694 |
/** |
|
695 |
* 重型平板半挂车 |
|
696 |
*/ |
|
697 |
public static final int EM_CAR_170 = 170; |
|
698 |
/** |
|
699 |
* 重型集装箱半挂车 |
|
700 |
*/ |
|
701 |
public static final int EM_CAR_171 = 171; |
|
702 |
/** |
|
703 |
* 重型自卸半挂车 |
|
704 |
*/ |
|
705 |
public static final int EM_CAR_172 = 172; |
|
706 |
/** |
|
707 |
* 重型特殊结构半挂车 |
|
708 |
*/ |
|
709 |
public static final int EM_CAR_173 = 173; |
|
710 |
/** |
|
711 |
* 重型仓栅式半挂车 |
|
712 |
*/ |
|
713 |
public static final int EM_CAR_174 = 174; |
|
714 |
/** |
|
715 |
* 重型旅居半挂车 |
|
716 |
*/ |
|
717 |
public static final int EM_CAR_175 = 175; |
|
718 |
/** |
|
719 |
* 重型专项作业半挂车 |
|
720 |
*/ |
|
721 |
public static final int EM_CAR_176 = 176; |
|
722 |
/** |
|
723 |
* 重型低平板半挂车 |
|
724 |
*/ |
|
725 |
public static final int EM_CAR_177 = 177; |
|
726 |
/** |
|
727 |
* 重型车辆运输半挂车 |
|
728 |
*/ |
|
729 |
public static final int EM_CAR_178 = 178; |
|
730 |
/** |
|
731 |
* 重型罐式自卸半挂车 |
|
732 |
*/ |
|
733 |
public static final int EM_CAR_179 = 179; |
|
734 |
/** |
|
735 |
* 重型平板自卸半挂车 |
|
736 |
*/ |
|
737 |
public static final int EM_CAR_180 = 180; |
|
738 |
/** |
|
739 |
* 重型集装箱自卸半挂车 |
|
740 |
*/ |
|
741 |
public static final int EM_CAR_181 = 181; |
|
742 |
/** |
|
743 |
* 重型特殊结构自卸半挂车 |
|
744 |
*/ |
|
745 |
public static final int EM_CAR_182 = 182; |
|
746 |
/** |
|
747 |
* 重型仓栅式自卸半挂车 |
|
748 |
*/ |
|
749 |
public static final int EM_CAR_183 = 183; |
|
750 |
/** |
|
751 |
* 重型专项作业自卸半挂车 |
|
752 |
*/ |
|
753 |
public static final int EM_CAR_184 = 184; |
|
754 |
/** |
|
755 |
* 重型低平板自卸半挂车 |
|
756 |
*/ |
|
757 |
public static final int EM_CAR_185 = 185; |
|
758 |
/** |
|
759 |
* 重型中置轴旅居挂车 |
|
760 |
*/ |
|
761 |
public static final int EM_CAR_186 = 186; |
|
762 |
/** |
|
763 |
* 重型中置轴车辆运输车 |
|
764 |
*/ |
|
765 |
public static final int EM_CAR_187 = 187; |
|
766 |
/** |
|
767 |
* 重型中置轴普通挂车 |
|
768 |
*/ |
|
769 |
public static final int EM_CAR_188 = 188; |
|
770 |
/** |
|
771 |
* 中型普通半挂车 |
|
772 |
*/ |
|
773 |
public static final int EM_CAR_189 = 189; |
|
774 |
/** |
|
775 |
* 中型厢式半挂车 |
|
776 |
*/ |
|
777 |
public static final int EM_CAR_190 = 190; |
|
778 |
/** |
|
779 |
* 中型罐式半挂车 |
|
780 |
*/ |
|
781 |
public static final int EM_CAR_191 = 191; |
|
782 |
/** |
|
783 |
* 中型平板半挂车 |
|
784 |
*/ |
|
785 |
public static final int EM_CAR_192 = 192; |
|
786 |
/** |
|
787 |
* 中型集装箱半挂车 |
|
788 |
*/ |
|
789 |
public static final int EM_CAR_193 = 193; |
|
790 |
/** |
|
791 |
* 中型自卸半挂车 |
|
792 |
*/ |
|
793 |
public static final int EM_CAR_194 = 194; |
|
794 |
/** |
|
795 |
* 中型特殊结构半挂车 |
|
796 |
*/ |
|
797 |
public static final int EM_CAR_195 = 195; |
|
798 |
/** |
|
799 |
* 中型仓栅式半挂车 |
|
800 |
*/ |
|
801 |
public static final int EM_CAR_196 = 196; |
|
802 |
/** |
|
803 |
* 中型旅居半挂车 |
|
804 |
*/ |
|
805 |
public static final int EM_CAR_197 = 197; |
|
806 |
/** |
|
807 |
* 中型专项作业半挂车 |
|
808 |
*/ |
|
809 |
public static final int EM_CAR_198 = 198; |
|
810 |
/** |
|
811 |
* 中型低平板半挂车 |
|
812 |
*/ |
|
813 |
public static final int EM_CAR_199 = 199; |
|
814 |
/** |
|
815 |
* 中型车辆运输半挂车 |
|
816 |
*/ |
|
817 |
public static final int EM_CAR_200 = 200; |
|
818 |
/** |
|
819 |
* 中型罐式自卸半挂车 |
|
820 |
*/ |
|
821 |
public static final int EM_CAR_201 = 201; |
|
822 |
/** |
|
823 |
* 中型平板自卸半挂车 |
|
824 |
*/ |
|
825 |
public static final int EM_CAR_202 = 202; |
|
826 |
/** |
|
827 |
* 中型集装箱自卸半挂车 |
|
828 |
*/ |
|
829 |
public static final int EM_CAR_203 = 203; |
|
830 |
/** |
|
831 |
* 中型特殊结构自卸挂车 |
|
832 |
*/ |
|
833 |
public static final int EM_CAR_204 = 204; |
|
834 |
/** |
|
835 |
* 中型仓栅式自卸半挂车 |
|
836 |
*/ |
|
837 |
public static final int EM_CAR_205 = 205; |
|
838 |
/** |
|
839 |
* 中型专项作业自卸半挂车 |
|
840 |
*/ |
|
841 |
public static final int EM_CAR_206 = 206; |
|
842 |
/** |
|
843 |
* 中型低平板自卸半挂车 |
|
844 |
*/ |
|
845 |
public static final int EM_CAR_207 = 207; |
|
846 |
/** |
|
847 |
* 中型中置轴旅居挂车 |
|
848 |
*/ |
|
849 |
public static final int EM_CAR_208 = 208; |
|
850 |
/** |
|
851 |
* 中型中置轴车辆运输车 |
|
852 |
*/ |
|
853 |
public static final int EM_CAR_209 = 209; |
|
854 |
/** |
|
855 |
* 中型中置轴普通挂车 |
|
856 |
*/ |
|
857 |
public static final int EM_CAR_210 = 210; |
|
858 |
/** |
|
859 |
* 轻型普通半挂车 |
|
860 |
*/ |
|
861 |
public static final int EM_CAR_211 = 211; |
|
862 |
/** |
|
863 |
* 轻型厢式半挂车 |
|
864 |
*/ |
|
865 |
public static final int EM_CAR_212 = 212; |
|
866 |
/** |
|
867 |
* 轻型罐式半挂车 |
|
868 |
*/ |
|
869 |
public static final int EM_CAR_213 = 213; |
|
870 |
/** |
|
871 |
* 轻型平板半挂车 |
|
872 |
*/ |
|
873 |
public static final int EM_CAR_214 = 214; |
|
874 |
/** |
|
875 |
* 轻型自卸半挂车 |
|
876 |
*/ |
|
877 |
public static final int EM_CAR_215 = 215; |
|
878 |
/** |
|
879 |
* 轻型仓栅式半挂车 |
|
880 |
*/ |
|
881 |
public static final int EM_CAR_216 = 216; |
|
882 |
/** |
|
883 |
* 轻型旅居半挂车 |
|
884 |
*/ |
|
885 |
public static final int EM_CAR_217 = 217; |
|
886 |
/** |
|
887 |
* 轻型专项作业半挂车 |
|
888 |
*/ |
|
889 |
public static final int EM_CAR_218 = 218; |
|
890 |
/** |
|
891 |
* 轻型低平板半挂车 |
|
892 |
*/ |
|
893 |
public static final int EM_CAR_219 = 219; |
|
894 |
/** |
|
895 |
* 轻型车辆运输半挂车 |
|
896 |
*/ |
|
897 |
public static final int EM_CAR_220 = 220; |
|
898 |
/** |
|
899 |
* 轻型罐式自卸半挂车 |
|
900 |
*/ |
|
901 |
public static final int EM_CAR_221 = 221; |
|
902 |
/** |
|
903 |
* 轻型平板自卸半挂车 |
|
904 |
*/ |
|
905 |
public static final int EM_CAR_222 = 222; |
|
906 |
/** |
|
907 |
* 轻型集装箱自卸半挂车 |
|
908 |
*/ |
|
909 |
public static final int EM_CAR_223 = 223; |
|
910 |
/** |
|
911 |
* 轻型特殊结构自卸挂车 |
|
912 |
*/ |
|
913 |
public static final int EM_CAR_224 = 224; |
|
914 |
/** |
|
915 |
* 轻型仓栅式自卸半挂车 |
|
916 |
*/ |
|
917 |
public static final int EM_CAR_225 = 225; |
|
918 |
/** |
|
919 |
* 轻型专项作业自卸半挂车 |
|
920 |
*/ |
|
921 |
public static final int EM_CAR_226 = 226; |
|
922 |
/** |
|
923 |
* 轻型低平板自卸半挂车 |
|
924 |
*/ |
|
925 |
public static final int EM_CAR_227 = 227; |
|
926 |
/** |
|
927 |
* 轻型中置轴旅居挂车 |
|
928 |
*/ |
|
929 |
public static final int EM_CAR_228 = 228; |
|
930 |
/** |
|
931 |
* 轻型中置轴车辆运输车 |
|
932 |
*/ |
|
933 |
public static final int EM_CAR_229 = 229; |
|
934 |
/** |
|
935 |
* 轻型中置轴普通挂车 |
|
936 |
*/ |
|
937 |
public static final int EM_CAR_230 = 230; |
|
938 |
} |