2021-02-25 09:33:01 +08:00
|
|
|
|
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="";
|
|
|
|
|
|
2022-03-22 17:47:50 +08:00
|
|
|
|
private String depth;
|
|
|
|
|
private String faceModel;
|
|
|
|
|
private String sourceFile;
|
|
|
|
|
private String cameraParam;
|
|
|
|
|
|
2022-09-20 09:26:06 +08:00
|
|
|
|
private String idNumber;
|
|
|
|
|
private Integer personClass;
|
|
|
|
|
|
2023-09-20 14:35:52 +08:00
|
|
|
|
private String thdFeature;
|
|
|
|
|
|
|
|
|
|
//-------------------v5http---------------
|
|
|
|
|
private String buildUnit;
|
|
|
|
|
private String room;
|
|
|
|
|
private Long deptId;
|
|
|
|
|
private String deptName;
|
|
|
|
|
private Integer labelId;
|
|
|
|
|
private String labelName;
|
|
|
|
|
|
2024-07-23 11:14:47 +08:00
|
|
|
|
//--------v10掌静脉---------------
|
|
|
|
|
private String pvLeft;
|
|
|
|
|
private String pvRight;
|
|
|
|
|
private Integer featureType;
|
|
|
|
|
|
2021-02-25 09:33:01 +08:00
|
|
|
|
|
|
|
|
|
}
|