mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-10-21 22:56:41 +08:00
添加用户登录(还未验证)
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package plus.bookshelf.Service.Model;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UserModel {
|
||||
|
||||
// 用户Id
|
||||
Integer id;
|
||||
|
||||
// 用户名
|
||||
String username;
|
||||
|
||||
// 用户加密后的密码
|
||||
String encriptPwd;
|
||||
|
||||
// 用户昵称
|
||||
String nickname;
|
||||
|
||||
// 用户身份 NOT_LOGIN, ADMIN, LOGIN_USER;
|
||||
String userIdentity;
|
||||
|
||||
// 用户头像
|
||||
String avatar;
|
||||
|
||||
// 用户手机号
|
||||
String phone;
|
||||
|
||||
// 微信第三方登录授权
|
||||
String weixinThirdPartyAuthCode;
|
||||
|
||||
// QQ第三方登录授权
|
||||
String qqThirdPartyAuthCode;
|
||||
}
|
Reference in New Issue
Block a user