提交 | 用户 | 时间
|
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_USE_PROPERTY_TYPE extends NetSDKLib.SdkStructure { |
|
13 |
|
|
14 |
/** |
|
15 |
* 非营运 |
|
16 |
*/ |
|
17 |
public static final int EM_USE_PROPERTY_NONOPERATING = 0; |
|
18 |
/** |
|
19 |
* 公路客运,旅游客运 |
|
20 |
*/ |
|
21 |
public static final int EM_USE_PROPERTY_HIGWAY = 1; |
|
22 |
/** |
|
23 |
* 公交客运 |
|
24 |
*/ |
|
25 |
public static final int EM_USE_PROPERTY_BUS = 2; |
|
26 |
/** |
|
27 |
* 出租客运 |
|
28 |
*/ |
|
29 |
public static final int EM_USE_PROPERTY_TAXI = 3; |
|
30 |
/** |
|
31 |
* 货运 |
|
32 |
*/ |
|
33 |
public static final int EM_USE_PROPERTY_FREIGHT = 4; |
|
34 |
/** |
|
35 |
* 租赁 |
|
36 |
*/ |
|
37 |
public static final int EM_USE_PROPERTY_LEASE = 5; |
|
38 |
/** |
|
39 |
* 警用,消防,救护,工程救险 |
|
40 |
*/ |
|
41 |
public static final int EM_USE_PROPERTY_SECURITY = 6; |
|
42 |
/** |
|
43 |
* 教练 |
|
44 |
*/ |
|
45 |
public static final int EM_USE_PROPERTY_COACH = 7; |
|
46 |
/** |
|
47 |
* 幼儿校车,小学生校车,其他校车 |
|
48 |
*/ |
|
49 |
public static final int EM_USE_PROPERTY_SCHOOLBUS = 8; |
|
50 |
/** |
|
51 |
* 危化品运输 |
|
52 |
*/ |
|
53 |
public static final int EM_USE_PROPERTY_FOR_DANGE_VEHICLE = 9; |
|
54 |
/** |
|
55 |
* 其他 |
|
56 |
*/ |
|
57 |
public static final int EM_USE_PROPERTY_OTHER = 10; |
|
58 |
/** |
|
59 |
* 网约车 |
|
60 |
*/ |
|
61 |
public static final int EM_USE_PROPERTY_ONLINE_CAR_HAILING = 11; |
|
62 |
/** |
|
63 |
* 非机动外卖车 |
|
64 |
*/ |
|
65 |
public static final int EM_USE_PROPERTY_NON_MOTORIZED_TAKE_OUT_VEHICLE = 12; |
|
66 |
/** |
|
67 |
* 非机动快递车 |
|
68 |
*/ |
|
69 |
public static final int EM_USE_PROPERTY_NON_MOTORIZED_EXPRESS_CAR = 13; |
|
70 |
} |