feat: OAuth update
This commit is contained in:
@@ -15,57 +15,57 @@ import java.util.Date;
|
|||||||
public class SchisandraAuthUserDTO implements Serializable {
|
public class SchisandraAuthUserDTO implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* id
|
||||||
*/
|
*/
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 用户名
|
||||||
*/
|
*/
|
||||||
private String userName;
|
private String userName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 昵称
|
||||||
*/
|
*/
|
||||||
private String nickName;
|
private String nickName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 邮箱
|
||||||
*/
|
*/
|
||||||
private String email;
|
private String email;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 手机号
|
||||||
*/
|
*/
|
||||||
private String phone;
|
private String phone;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 密码
|
||||||
*/
|
*/
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 性别
|
||||||
*/
|
*/
|
||||||
private String gender;
|
private String gender;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 头像
|
||||||
*/
|
*/
|
||||||
private String avatar;
|
private String avatar;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 状态
|
||||||
*/
|
*/
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 介绍
|
||||||
*/
|
*/
|
||||||
private String introduce;
|
private String introduce;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 扩展字段
|
||||||
*/
|
*/
|
||||||
private String extJson;
|
private String extJson;
|
||||||
|
|
||||||
@@ -90,27 +90,32 @@ public class SchisandraAuthUserDTO implements Serializable {
|
|||||||
private Date updateTime;
|
private Date updateTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 是否删除
|
||||||
*/
|
*/
|
||||||
private Integer isDeleted;
|
private Integer isDeleted;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 博客
|
||||||
*/
|
*/
|
||||||
private String blog;
|
private String blog;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 城市
|
||||||
*/
|
*/
|
||||||
private String location;
|
private String location;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 公司
|
||||||
*/
|
*/
|
||||||
private String company;
|
private String company;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 激活码
|
||||||
|
*/
|
||||||
private String activeCode;
|
private String activeCode;
|
||||||
|
/**
|
||||||
|
* 确认密码
|
||||||
|
*/
|
||||||
private String confirmPassword;
|
private String confirmPassword;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user