1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-10-15 20:25:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

添加用户登录(还未验证)

This commit is contained in:
2022-03-13 02:05:29 +08:00
parent 1b78102d61
commit b49e720b3f
11 changed files with 756 additions and 1 deletions

View File

@@ -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;
}