码农笔录博客源码
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

24 строки
634 B

6 лет назад
package models
import "time"
type Blog struct {
6 лет назад
Id int64
UserId int64
Title string
BlogValue string `orm:"type(text)"`
BlogHtml string `orm:"type(text)"`
Ctime time.Time `orm:"auto_now_add;type(datetime)"`
Utime time.Time `orm:"auto_now_add;type(datetime)"`
Browses int64 `orm:"default(0)"`
Top int `orm:"default(0)"`
Hot int `orm:"default(0)"`
Ttime time.Time `orm:"null;type(date)"`
Htime time.Time `orm:"null;type(date)"`
Delflag int `orm:"default(0)"`
6 лет назад
CategoryId int64
6 лет назад
UserName string `orm:"-"`
CateName string `orm:"-"`
6 лет назад
}