您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type Comment struct {
|
|
|
|
Id int64
|
|
|
|
CuserId int64 `orm:"default(0)"`
|
|
|
|
BuserId int64 `orm:"default(0)"`
|
|
|
|
BlogId int64 `orm:"default(0)"`
|
|
|
|
Ctime time.Time `orm:"auto_now_add;type(datetime)"`
|
|
|
|
Pid int64 `orm:"default(0)"`
|
|
|
|
ComVal string `orm:"type(text)"`
|
|
|
|
|
|
|
|
Childs []*Comment `orm:"-"`
|
|
|
|
CUser *User `orm:"-"`
|
|
|
|
BUser *User `orm:"-"`
|
|
|
|
}
|