Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
13 строки
204 B
13 строки
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)"`
|
|
}
|
|
|