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.
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type NLabel struct {
|
|
|
|
Id int64
|
|
|
|
Title string
|
|
|
|
UserId int64
|
|
|
|
BlogId int64
|
|
|
|
Ctime time.Time `orm:"auto_now_add;type(datetime)"`
|
|
|
|
}
|