提交 | 用户 | 时间
|
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 AC服务能力集 |
|
9 |
* @origin autoTool |
|
10 |
* @date 2023/02/10 14:34:21 |
|
11 |
*/ |
|
12 |
public class NET_AC_CAPS extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
支持的门禁通道数量 |
|
15 |
*/ |
|
16 |
public int nChannels; |
|
17 |
/** |
|
18 |
是否支持门禁报警日志记录在记录集中 |
|
19 |
*/ |
|
20 |
public int bSupAccessControlAlarmRecord; |
|
21 |
/** |
|
22 |
AccessControlCustomPassword记录集中密码的保存方式,0:明文,默认值0, 1:MD5 |
|
23 |
*/ |
|
24 |
public int nCustomPasswordEncryption; |
|
25 |
/** |
|
26 |
是否支持信息功能,0:未知,默认,1:不支持, 2:支持 |
|
27 |
*/ |
|
28 |
public int nSupportFingerPrint; |
|
29 |
/** |
|
30 |
是否支持卡片鉴权 |
|
31 |
*/ |
|
32 |
public int bHasCardAuth; |
|
33 |
/** |
|
34 |
是否支持目标识别鉴权 |
|
35 |
*/ |
|
36 |
public int bHasFaceAuth; |
|
37 |
/** |
|
38 |
是否只支持单门授权(发卡) |
|
39 |
*/ |
|
40 |
public int bOnlySingleDoorAuth; |
|
41 |
/** |
|
42 |
是否支持授权异步返回 |
|
43 |
*/ |
|
44 |
public int bAsynAuth; |
|
45 |
/** |
|
46 |
是否支持人卡分离方案 |
|
47 |
*/ |
|
48 |
public int bUserlsoLate; |
|
49 |
/** |
|
50 |
机器数据下发插入最大数量 |
|
51 |
*/ |
|
52 |
public int nMaxInsertRate; |
|
53 |
/** |
|
54 |
假日计划能力 |
|
55 |
*/ |
|
56 |
public NET_SPECIAL_DAYS_SCHEDULE_CAPS stuSpecialDaysSchedule=new NET_SPECIAL_DAYS_SCHEDULE_CAPS(); |
|
57 |
/** |
|
58 |
设备支持的开锁模式组合数量 |
|
59 |
*/ |
|
60 |
public int nUnlockModes; |
|
61 |
/** |
|
62 |
设备支持的开锁模式组合 |
|
63 |
*/ |
|
64 |
public int[] emUnlockModes=new int[128]; |
|
65 |
/** |
7412dd
|
66 |
支持安全帽功能 {@link com.iailab.netsdk.lib.enumeration.EM_SUPPORT_HELMET_TYPE} |
149dd0
|
67 |
*/ |
H |
68 |
public int emSupportHelmetType; |
|
69 |
/** |
|
70 |
支持人名长度限制 |
|
71 |
*/ |
|
72 |
public int nUserNameMaxLen; |
|
73 |
/** |
|
74 |
支持闸机业务组件(以前闸机是挂在门禁设备作为子设备存在,闸机相关配置写在门禁里面。现在将闸机业务从门禁业务划分出来。) |
|
75 |
*/ |
|
76 |
public int bSupportASGManager; |
|
77 |
/** |
|
78 |
是否支持眼睛识别鉴权 |
|
79 |
*/ |
|
80 |
public int bHasIrisAuth; |
|
81 |
/** |
|
82 |
保留字节 |
|
83 |
*/ |
|
84 |
public byte[] byReserved=new byte[240]; |
|
85 |
|
|
86 |
public NET_AC_CAPS(){ |
|
87 |
} |
|
88 |
} |