提交 | 用户 | 时间 | ||
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 19:35 | |
11 | */ | |
12 | public class EM_HAS_VEST extends NetSDKLib.SdkStructure { | |
13 | ||
14 | /** | |
15 | * 未知 | |
16 | */ | |
17 | public static final int EM_HAS_VEST_UNKNOWN = 0; | |
18 | /** | |
19 | * 无 | |
20 | */ | |
21 | public static final int EM_HAS_VEST_NO = 1; | |
22 | /** | |
23 | * 有 | |
24 | */ | |
25 | public static final int EM_HAS_VEST_YES = 2; | |
26 | } |