提交 | 用户 | 时间
|
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_PLATE_TYPE extends NetSDKLib.SdkStructure { |
|
13 |
|
|
14 |
/** |
|
15 |
* 其他车 |
|
16 |
*/ |
|
17 |
public static final int EM_PLATE_OTHER = 0; |
|
18 |
/** |
|
19 |
* 大型汽车 |
|
20 |
*/ |
|
21 |
public static final int EM_PLATE_BIG_CAR = 1; |
|
22 |
/** |
|
23 |
* 小型汽车 |
|
24 |
*/ |
|
25 |
public static final int EM_PLATE_SMALL_CAR = 2; |
|
26 |
/** |
|
27 |
* 使馆汽车 |
|
28 |
*/ |
|
29 |
public static final int EM_PLATE_EMBASSY_CAR = 3; |
|
30 |
/** |
|
31 |
* 领馆汽车 |
|
32 |
*/ |
|
33 |
public static final int EM_PLATE_CONSULATE_CAR = 4; |
|
34 |
/** |
|
35 |
* 境外汽车 |
|
36 |
*/ |
|
37 |
public static final int EM_PLATE_ABROAD_CAR = 5; |
|
38 |
/** |
|
39 |
* 外籍汽车 |
|
40 |
*/ |
|
41 |
public static final int EM_PLATE_FOREIGN_CAR = 6; |
|
42 |
/** |
|
43 |
* 低速车 |
|
44 |
*/ |
|
45 |
public static final int EM_PLATE_LOW_SPEED_CAR = 7; |
|
46 |
/** |
|
47 |
* 教练车 |
|
48 |
*/ |
|
49 |
public static final int EM_PLATE_COACH_CAR = 8; |
|
50 |
/** |
|
51 |
* 摩托车 |
|
52 |
*/ |
|
53 |
public static final int EM_PLATE_MOTORCYCLE = 9; |
|
54 |
/** |
|
55 |
* 新能源车 |
|
56 |
*/ |
|
57 |
public static final int EM_PLATE_NEW_POWER_CAR = 10; |
|
58 |
/** |
|
59 |
* 警用车 |
|
60 |
*/ |
|
61 |
public static final int EM_PLATE_POLICE_CAR = 11; |
|
62 |
/** |
|
63 |
* 港澳两地车 |
|
64 |
*/ |
|
65 |
public static final int EM_PLATE_HONGKONG_MACAO_CAR = 12; |
|
66 |
/** |
|
67 |
* |
|
68 |
*/ |
|
69 |
public static final int EM_PLATE_WJPOLICE_CAR = 13; |
|
70 |
/** |
|
71 |
* |
|
72 |
*/ |
|
73 |
public static final int EM_PLATE_OUTERGUARD_CAR = 14; |
|
74 |
/** |
|
75 |
* 非机动车临时牌照 |
|
76 |
*/ |
|
77 |
public static final int EM_PLATE_TEMPORARY_LICENSE_FOR_NON_MOTOR_VEHICLES = 15; |
|
78 |
/** |
|
79 |
* 非机动车牌正式牌照 |
|
80 |
*/ |
|
81 |
public static final int EM_PLATE_OFFICIAL_LICENSE_PLATE_FOR_NON_MOTOR_VEHICLE = 16; |
|
82 |
} |