exhibition-main/internal/model/user.go
2024-01-31 17:04:43 +08:00

13 lines
229 B
Go

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"`
}