Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
package com.iailab.netsdk.lib.enumeration;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
 
/**
 * 包类型
 * 
 * @author : 260611
 * @since : Created in 2021/10/19 19:35
 */
public class EM_BAG_TYPE extends NetSDKLib.SdkStructure {
 
    /**
     *  未知
     */
    public static final int                    EM_BAG_UNKNOWN = 0;
    /**
     *  手提包
     */
    public static final int                    EM_BAG_HANDBAG = 1;
    /**
     *  肩包
     */
    public static final int                    EM_BAG_SHOULDERBAG = 2;
    /**
     *  背包
     */
    public static final int                    EM_BAG_KNAPSACK = 3;
    /**
     *  拉杆箱
     */
    public static final int                    EM_BAG_DRAWBARBOX = 4;
    /**
     *  腰包
     */
    public static final int                    EM_BAG_WAISTPACK = 5;
    /**
     *  无包
     */
    public static final int                    EM_BAG_NONE = 6;
}