提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* className:NET_IN_DELIVER_USER_PICTURE |
|
7 |
* description: 下发人脸数据 <—— 入参 |
|
8 |
* author:251589 |
|
9 |
* createTime:2020/12/21 21:51 |
|
10 |
* |
|
11 |
* @version v1.0 |
|
12 |
*/ |
|
13 |
public class NET_IN_DELIVER_USER_PICTURE extends NetSDKLib.SdkStructure { |
|
14 |
public int dwSize; // 结构体大小 |
|
15 |
public int nResult; // 平台查询结果// 0:有数据 1:不在人员库 |
|
16 |
public byte[] szCitizenID = new byte[32]; // 证件信息 |
|
17 |
public byte[] szUserID = new byte[64]; // 用户标识(选填) |
|
18 |
public NET_USER_PICTURE_DATA[] stuPictureData = new NET_USER_PICTURE_DATA[5]; // 图片信息 |
|
19 |
public int nPictureData; // stuPictureData 个数 |
|
20 |
public byte[] byReserved = new byte[4]; // 预留字段 |
|
21 |
|
|
22 |
public NET_IN_DELIVER_USER_PICTURE() { |
|
23 |
this.dwSize = this.size(); |
|
24 |
} |
|
25 |
} |