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