Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
16 righe
266 B
16 righe
266 B
package models
|
|
|
|
import "time"
|
|
|
|
/**
|
|
笔记
|
|
*/
|
|
type Note struct {
|
|
Id int64
|
|
UserId int64
|
|
Title string
|
|
NoteHtml string `orm:"type(text)"`
|
|
NoteVal string `orm:"type(text)"`
|
|
Pid int64
|
|
Utime time.Time `orm:"auto_now_add;type(datetime)"`
|
|
}
|
|
|