houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3
4 import com.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  布防信息 
9 * @date 2022/08/31 14:44:18
10 */
11 public class NET_WPAN_ARMING_INFO extends NetSDKLib.SdkStructure {
12 /** 
13 布防模式 {@link com.netsdk.lib.enumeration.EM_ARMING_TYPE}
14 */
15 public            int                    emType;
16 /** 
17 布防开关:布防时候是否使能该探测器
18 */
19 public            int                    bEnable;
20 /** 
21 延时使能:布防时候是否使用进入退出延时
22 */
23 public            int                    bDelayEnable;
24 /** 
25 预留字段
26 */
27 public            byte[]                    byReserved=new byte[32];
28
29 public            NET_WPAN_ARMING_INFO(){
30 }
31 }