houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3
4 import com.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  user操作能力集 
9 * @origin autoTool
10 * @date 2023/02/10 14:34:21
11 */
12 public class NET_ACCESS_USER_CAPS extends NetSDKLib.SdkStructure {
13 /** 
14 每次下发的最大数量
15 */
16 public            int                    nMaxInsertRate;
17 /** 
18 用户数量上限
19 */
20 public            int                    nMaxUsers;
21 /** 
22 每个用户可以记录的最大信息数量
23 */
24 public            int                    nMaxFingerPrintsPerUser;
25 /** 
26 每个用户可以记录的最大卡片数量
27 */
28 public            int                    nMaxCardsPerUser;
29 /** 
30 保留字节
31 */
32 public            byte[]                    byReserved=new byte[512];
33
34 public            NET_ACCESS_USER_CAPS(){
35 }
36 }