| | |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.fasterxml.jackson.annotation.JsonAlias; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class UserFaceVo implements Serializable { |
| | | |
| | | @JSONField(name = "person_id") |
| | | |
| | | @JsonProperty("person_id") |
| | | private String userId; |
| | | |
| | | @JSONField(name = "person_name") |
| | | @JsonProperty("person_name") |
| | | private String realName; |
| | | |
| | | @JSONField(name = "person_type") |
| | | @JsonProperty("person_type") |
| | | private String personType = "4"; |
| | | |
| | | private int sex; |
| | | |
| | | private String templateImgUrl; |
| | | private List<String> templateImgUrl; |
| | | |
| | | private String photo; |
| | | } |