码农笔录博客源码
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

13 rader
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)"`
}