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ů.
13 lines
204 B
13 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)"`
|
|
}
|
|
|