码农笔录博客源码
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

30 satır
652 B

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