This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package vo
// LoginUserVO 登录用户视图对象
type LoginUserVO struct {
ID string `json:"id"`
Username string `json:"username"`
Realname string `json:"realname"`
Avatar string `json:"avatar"`
Phone string `json:"phone"`
Email string `json:"email"`
// 注意:不包含 Token,Token 应该在单独的响应结构中
}