cqyt/shapelight-admin/src/main/java/net/shapelight/modules/vo/TenUserVo.java

31 lines
739 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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="";
}