This commit is contained in:
张良(004796)
2024-02-20 09:55:22 +08:00
parent d0532bb736
commit f53f238f6e
4 changed files with 19 additions and 0 deletions

View File

@@ -24,6 +24,8 @@ public class UserInfoVo {
private String usercode;
@Schema(description = "昵称")
private String nickname;
@Schema(description = "性别")
private Integer gender;
@Schema(description = "头像")
private String avatar;
@Schema(description = "城市")
@@ -57,6 +59,9 @@ public class UserInfoVo {
@Schema(description = "是否关注")
private Boolean star;
@Schema(description = "是否拉黑该用户")
private Boolean black;
@Schema(description = "用户状态")
private OnlineStatusVo onlineStatus;