You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
700 B
Java
47 lines
700 B
Java
package com.gszc.entity;
|
|
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.experimental.Accessors;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author ky
|
|
* @since 2020-04-27
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Accessors(chain = true)
|
|
public class MiniUser implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private String id;
|
|
|
|
private String telephone;
|
|
|
|
private String areaCode;
|
|
|
|
private String openId;
|
|
|
|
private String sex;
|
|
|
|
private String sessionKey;
|
|
|
|
private String headImg;
|
|
|
|
private Date createDate;
|
|
|
|
private String area;
|
|
|
|
private boolean isCertified;
|
|
|
|
|
|
}
|