提交 | 用户 | 时间
|
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 19:35 |
|
11 |
*/ |
|
12 |
public class EM_BAG_TYPE extends NetSDKLib.SdkStructure { |
|
13 |
|
|
14 |
/** |
|
15 |
* 未知 |
|
16 |
*/ |
|
17 |
public static final int EM_BAG_UNKNOWN = 0; |
|
18 |
/** |
|
19 |
* 手提包 |
|
20 |
*/ |
|
21 |
public static final int EM_BAG_HANDBAG = 1; |
|
22 |
/** |
|
23 |
* 肩包 |
|
24 |
*/ |
|
25 |
public static final int EM_BAG_SHOULDERBAG = 2; |
|
26 |
/** |
|
27 |
* 背包 |
|
28 |
*/ |
|
29 |
public static final int EM_BAG_KNAPSACK = 3; |
|
30 |
/** |
|
31 |
* 拉杆箱 |
|
32 |
*/ |
|
33 |
public static final int EM_BAG_DRAWBARBOX = 4; |
|
34 |
/** |
|
35 |
* 腰包 |
|
36 |
*/ |
|
37 |
public static final int EM_BAG_WAISTPACK = 5; |
|
38 |
/** |
|
39 |
* 无包 |
|
40 |
*/ |
|
41 |
public static final int EM_BAG_NONE = 6; |
|
42 |
} |