zxl
2025-05-08 84fa53cb66bb4b05f0622c738346ce77f8f13aea
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
package com.ycl.api.DH.lib.enumeration;
 
import com.ycl.api.DH.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;
}