25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
403 B
17 lines
403 B
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:"-"`
|
|
}
|
|
|