houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3
4 import com.iailab.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  获取旁路状态 输入参数。此时CLIENT_GetAlarmRegionInfo的emType参数为NET_EM_GET_ALARMREGION_INFO_BYPASSMODE 
9 * @origin autoTool
10 * @date 2023/08/09 16:27:26
11 */
12 public class NET_IN_GET_BYPASSMODE extends NetSDKLib.SdkStructure {
13 /** 
14 结构体大小
15 */
16 public            int                    dwSize;
17 /** 
18 防区个数
19 */
20 public            int                    nZoneNum;
21 /** 
22 防区号, 从1开始
23 */
24 public            int[]                    arrZones=new int[72];
25 /** 
26 防区个数扩展
27 */
28 public            int                    nZoneNumEx;
29 /** 
30 防区号扩展  超过72使用这个字段
31 */
32 public            int[]                    arrZonesEx=new int[256];
33
34 public NET_IN_GET_BYPASSMODE(){
35         this.dwSize=this.size();
36 }
37 }