Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type User ¶
type User struct { ID uint64 `xorm:"pk autoincr 'id'"` UserName string `xorm:"varchar(16) 'user_name'"` Passwd string `xorm:"varchar(100) 'passwd'"` Email string `xorm:"'email'"` Created time.Time `xorm:"created"` Updated time.Time `xorm:"updated"` }
User 系统注册用户登录表
type UserInfo ¶
type UserInfo struct { ID uint64 `xorm:"pk autoincr 'id'"` UID uint64 `xorm:"'user_id'"` NickName string `xorm:"varchar(100) 'nickname'"` Age int `xorm:"'age'"` Phone int `xorm:"'phone'"` Address string `xorm:"'address'"` Updated time.Time `xorm:"updated 'last_update_time'"` }
UserInfo 用户信息表
Click to show internal directories.
Click to hide internal directories.