码农笔录博客源码
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ů.

14 lines
204 B

package models
import "time"
type Comment struct {
Id int64
CuserId int64
BuserId int64
BlogId int64
Ctime time.Time `orm:"datetime"`
Pid int64
ComVal string `orm:"type(text)"`
}