提交 | 用户 | 时间 | ||
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_HAS_BAG extends NetSDKLib.SdkStructure { | |
13 | ||
14 | /** | |
15 | * 未知 | |
16 | */ | |
17 | public static final int EM_HAS_BAG_UNKNOWN = 0; | |
18 | /** | |
19 | * 不带包 | |
20 | */ | |
21 | public static final int EM_HAS_BAG_NO = 1; | |
22 | /** | |
23 | * 带包 | |
24 | */ | |
25 | public static final int EM_HAS_BAG_YES = 2; | |
26 | } |