This commit is contained in:
aozhiwei 2024-11-05 17:52:18 +08:00
parent 822ffa83d0
commit a78458ace3
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
package vo
type Base struct {
type BaseVo struct {
ErrCode int32 `json:"errcode"`
ErrMsg string `json:"errcmsg"`
Award *Award `json:"award"`

View File

@ -5,6 +5,7 @@ import (
)
type User struct {
BaseVo
AccountId string `json:"account_id"`
NickName string `json:"nickname"`
Avatar string `json:"avatar"`