31 lines
739 B
Java
31 lines
739 B
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="";
|
||
|
||
|
||
}
|