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 package vo
type Base struct { type BaseVo struct {
ErrCode int32 `json:"errcode"` ErrCode int32 `json:"errcode"`
ErrMsg string `json:"errcmsg"` ErrMsg string `json:"errcmsg"`
Award *Award `json:"award"` Award *Award `json:"award"`

View File

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