Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Image ¶
type Image struct { Full string `json:"full" gorm:"column:full"` // 大图文件名 Sprite string `json:"sprite" gorm:"column:sprite"` // 小图文件名 Group string `json:"group" gorm:"column:group"` // 图像所属组 X int `json:"x" gorm:"column:x"` // 图像 X 坐标 Y int `json:"y" gorm:"column:y"` // 图像 Y 坐标 W int `json:"w" gorm:"column:w"` // 图像宽度 H int `json:"h" gorm:"column:h"` // 图像高度 }
type User ¶
type User struct { gorm.Model UUID uuid.UUID `json:"uuid" gorm:"index"` UserName string `gorm:"column:username"` Password string `gorm:"column:password"` Email string `gorm:"column:email"` NickName string `gorm:"column:nickname"` Role Role `gorm:"column:role"` Token string `gorm:"-"` // 注册token或者登录token }
func (*User) MarshalBinary ¶
func (*User) UnmarshalBinary ¶
Click to show internal directories.
Click to hide internal directories.