20 lines
730 B
Go
20 lines
730 B
Go
// Package vo 视图对象
|
|
package vo
|
|
|
|
import "gorm.io/datatypes"
|
|
|
|
// UserProfileVO 登录用户信息
|
|
type UserProfileVO struct {
|
|
UserID int64 `json:"userId"`
|
|
Username string `json:"username"`
|
|
Nickname string `json:"nickname"`
|
|
AvatarURL string `json:"avatarUrl"`
|
|
Phone string `json:"phone"`
|
|
Gender int8 `json:"gender"`
|
|
Region string `json:"region"`
|
|
PlatformType int8 `json:"platformType"`
|
|
PlatformOpenID string `json:"platformOpenid"`
|
|
PlatformUnionID string `json:"platformUnionid"`
|
|
PlatformExtra datatypes.JSONMap `json:"platformExtra"`
|
|
}
|