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.
14 wiersze
204 B
14 wiersze
204 B
6 lat temu
|
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)"`
|
||
|
}
|