码农笔录博客源码
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

25 lines
439 B

package models
import "time"
type User struct {
Id int64
UserName string `orm:"unique"`
NickName string
UserPwd string
Salt string
Headimg string
Birthday time.Time `orm:"null;type(date)"`
Email string
Mobile string
QQ string
HomeUrl string
Sex int
DescInfo string
Ctime time.Time `orm:"auto_now_add;type(datetime)"`
BlogCount int
BlogBrowes int
BlogComment int
BlogLike int
}