mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-10-15 20:25:14 +08:00
添加用户登录(还未验证)
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package plus.bookshelf.Controller.VO;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UserVO {
|
||||
|
||||
// 用户Id
|
||||
Integer id;
|
||||
|
||||
// 用户名
|
||||
String username;
|
||||
|
||||
// 用户昵称
|
||||
String nickname;
|
||||
|
||||
// 用户身份 NOT_LOGIN, ADMIN, LOGIN_USER;
|
||||
String userIdentity;
|
||||
|
||||
// 用户头像
|
||||
String avatar;
|
||||
|
||||
// 用户手机号
|
||||
String phone;
|
||||
}
|
Reference in New Issue
Block a user