码农笔录博客源码
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
652 B

package models
import "time"
type User struct {
Id int64
UserName string `orm:"unique"`
6 년 전
NickName string
UserPwd string
Salt string
Headimg string
6 년 전
Birthday time.Time `orm:"auto_now_add;type(datetime)"`
Email string
Mobile string
QQ string
HomeUrl string
6 년 전
Sex int `orm:"default(1)"`
6 년 전
Status int `orm:"default(0)"`
DescInfo string
Ctime time.Time `orm:"auto_now_add;type(datetime)"`
6 년 전
BlogCount int `orm:"default(0)"`
BlogBrowes int `orm:"default(0)"`
BlogComment int `orm:"default(0)"`
BlogLike int `orm:"default(0)"`
}
6 년 전
func (u *User) TableName() string {
return "auth_user"
}