Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
13 wiersze
204 B
13 wiersze
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:"size(2000)"`
|
|
}
|
|
|