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
package com.iailab.netsdk.lib.structure;
 
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/** 
* @author 291189
* @description  fingerprint操作能力集 
* @origin autoTool
* @date 2023/02/10 14:34:21
*/
public class NET_ACCESS_FINGERPRINT_CAPS extends NetSDKLib.SdkStructure {
/** 
每次下发的最大数量
*/
public            int                    nMaxInsertRate;
/** 
单信息数据的最大字节数
*/
public            int                    nMaxFingerprintSize;
/** 
信息数量上限
*/
public            int                    nMaxFingerprint;
/** 
保留字节
*/
public            byte[]                    byReserved=new byte[512];
 
public            NET_ACCESS_FINGERPRINT_CAPS(){
}
}