提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.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 |
/** |
7412dd
|
21 |
* 旁路模式 {@link com.iailab.netsdk.lib.enumeration.EM_BYPASSMODE_TYPE} |
149dd0
|
22 |
*/ |
H |
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 |
} |