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