This commit is contained in:
aozhiwei 2024-11-04 17:29:51 +08:00
parent 1bc085ea69
commit d074234ece

View File

@ -0,0 +1,10 @@
package vo
type User struct {
AccountId string `json:"account_id"`
NickName string `json:"nickname"`
Avatar string `json:"avatar"`
Score string `json:"score"`
HourlyEarnings string `json:"hourly_earnings"`
Dice int32 `gorm:"json:dice"`
}