码农笔录博客源码
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
228 B

package models
6 yıl önce
import "time"
/**
笔记
*/
type Note struct {
6 yıl önce
Id int64
UserId int64
Title string
6 yıl önce
NoteHtml string `orm:"type(text)"`
6 yıl önce
Pid int64
Utime time.Time `orm:"auto_now_add;type(datetime)"`
}