houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 291189
7  * @description 门禁AC服务协议与设备能力获取出参
8  * @origin autoTool
9  * @date 2023/02/10 14:34:21
10  */
11 public class NET_OUT_AC_CAPS extends NetSDKLib.SdkStructure {
12     /**
13      * 结构体大小
14      */
15     public int dwSize;
16     /**
17      * ACCaps能力集
18      */
19     public NET_AC_CAPS stuACCaps = new NET_AC_CAPS();
20     /**
21      * user操作能力集
22      */
23     public NET_ACCESS_USER_CAPS stuUserCaps = new NET_ACCESS_USER_CAPS();
24     /**
25      * card操作能力集
26      */
27     public NET_ACCESS_CARD_CAPS stuCardCaps = new NET_ACCESS_CARD_CAPS();
28     /**
29      * 信息操作能力集
30      */
31     public NET_ACCESS_FINGERPRINT_CAPS stuFingerprintCaps = new NET_ACCESS_FINGERPRINT_CAPS();
32     /**
33      * 目标操作能力集
34      */
35     public NET_ACCESS_FACE_CAPS stuFaceCaps = new NET_ACCESS_FACE_CAPS();
36     /**
37      * 眼睛相关能力集
38      */
39     public NET_ACCESS_IRIS_CAPS stuIrisCaps = new NET_ACCESS_IRIS_CAPS();
40     /**
41      * 反潜回能力集
42      */
43     public NET_ANTI_SUBMARINE_CAPS stuAntisubmarineCaps = new NET_ANTI_SUBMARINE_CAPS();
44     /**
45      * 门禁互锁相关能力
46      */
47     public NET_INTER_LOCK_CAPS stuInterLockCaps = new NET_INTER_LOCK_CAPS();
48
49     public NET_OUT_AC_CAPS() {
50         this.dwSize = this.size();
51     }
52 }