exhibition-main/internal/model/user.go

13 lines
229 B
Go
Raw Normal View History

2024-01-31 09:04:43 +00:00
package model
const (
CTX_USER_INFO = "userinfo"
)
type UserInfo struct {
UserId int64 `json:"userId"`
CountryCode string `json:"countryCode"`
Phone string `json:"phone"`
Identity int32 `json:"identity"`
}