码农笔录博客源码
 
 
 
 
 

13 lines
153 B

package models
/**
文章
*/
type NoteColl struct {
Id int64
UserId int64
Title string
Notes []*Note `orm:"-"`
Count int64 `orm:"-"`
}