提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 门禁互锁相关能力
8  * @date 2023/04/18 19:40:08
9  */
10 public class NET_INTER_LOCK_CAPS extends NetSDKLib.SdkStructure {
11     /**
12      * 支持互锁回能力掩码,支持位或 bit0-本地反潜;bit1-网络反潜主控;bit2-网络反潜分控
13      */
14     public int nTypes;
15     /**
16      * 最大规则组数量, nTypes bit1=1时有效
17      */
18     public int nMaxRule;
19     /**
20      * 组内每个组最大支持多少个门, nTypes bit1=1时有效
21      */
22     public int nWithinMaxDoors;
23     /**
24      * 组间每个组最大支持多少个门, nTypes bit1=1时有效
25      */
26     public int nBetweenMaxDoors;
27     /**
28      * 保留字节
29      */
30     public byte[] byReserved = new byte[512];
31
32     public NET_INTER_LOCK_CAPS() {
33     }
34 }