码农笔录博客源码
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.
 
 
 
 
 

11 rader
165 B

package models
import "time"
type NLabel struct {
Id int64
Title string
UserId int64
BlogId int64
Ctime time.Time `orm:"auto_now_add;type(datetime)"`
}