Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 设置旁路状态
8  *              输入参数。此时CLIENT_SetAlarmRegionInfo的emType参数为NET_EM_SET_ALARMREGION_INFO_BYPASSMODE
9  * @date 2023/03/15 16:33:42
10  */
11 public class NET_IN_SET_BYPASSMODE extends NetSDKLib.SdkStructure {
12     /**
13      * 结构体大小
14      */
15     public int dwSize;
16     /**
17      * 密码
18      */
19     public byte[] szPwd = new byte[256];
20     /**
21      * 旁路模式 {@link com.netsdk.lib.enumeration.EM_BYPASSMODE_TYPE}
22      */
23     public int emType;
24     /**
25      * 防区个数
26      */
27     public int nZoneNum;
28     /**
29      * 防区号
30      */
31     public int[] arrZones = new int[72];
32     /**
33      * 防区个数扩展
34      */
35     public int nZoneNumEx;
36     /**
37      * 防区号扩展,超过72时使用此字段
38      */
39     public int[] arrZonesEx = new int[256];
40
41     public NET_IN_SET_BYPASSMODE() {
42         this.dwSize = this.size();
43     }
44 }