54 lines
1.3 KiB
Java
54 lines
1.3 KiB
Java
package net.shapelight.modules.vo;
|
||
|
||
|
||
import lombok.Data;
|
||
|
||
@Data
|
||
public class TenUserVo {
|
||
/*
|
||
"uid": 10009,
|
||
"last_update_stamp":156023023000,
|
||
"user_type":0,
|
||
"user_name":"张三",
|
||
"face_pic_base64":"32423be30xefw",
|
||
"face_pic_download_url":"http://example.com/download/face/234234.jpg",
|
||
"active_start_time":1559090090,
|
||
"active_end_time":156009090,
|
||
"card_id":"4ef33423"
|
||
*/
|
||
private Long uid;
|
||
private Long last_update_stamp;
|
||
private Integer user_type;
|
||
private String user_name;
|
||
private String face_pic_base64;
|
||
private String face_pic_download_url;
|
||
private Integer active_start_time;
|
||
private Integer active_end_time;
|
||
private String card_id="";
|
||
|
||
private String depth;
|
||
private String faceModel;
|
||
private String sourceFile;
|
||
private String cameraParam;
|
||
|
||
private String idNumber;
|
||
private Integer personClass;
|
||
|
||
private String thdFeature;
|
||
|
||
//-------------------v5http---------------
|
||
private String buildUnit;
|
||
private String room;
|
||
private Long deptId;
|
||
private String deptName;
|
||
private Integer labelId;
|
||
private String labelName;
|
||
|
||
//--------v10掌静脉---------------
|
||
private String pvLeft;
|
||
private String pvRight;
|
||
private Integer featureType;
|
||
|
||
|
||
}
|