书签
| 12 | |
| 13 | //书签 |
| 14 | type Bookmark struct { |
| 15 | Id int |
| 16 | BookId int `orm:"index"` //书籍id,主要是为了方便根据书籍id查询书签 |
| 17 | Uid int //用户id |
| 18 | DocId int //文档id |
| 19 | CreateAt int //创建时间 |
| 20 | } |
| 21 | |
| 22 | //书签列表 |
| 23 | type bookmarkList struct { |
nothing calls this directly
no outgoing calls
no test coverage detected