| 10 | ) |
| 11 | |
| 12 | type DocumentSearchResult struct { |
| 13 | DocumentId int `json:"doc_id"` |
| 14 | BookId int `json:"book_id"` |
| 15 | DocumentName string `json:"doc_name"` |
| 16 | Identify string `json:"identify"` // Identify 文档唯一标识 |
| 17 | Description string `json:"description"` |
| 18 | Author string `json:"author"` |
| 19 | BookName string `json:"book_name"` |
| 20 | BookIdentify string `json:"book_identify"` |
| 21 | ModifyTime time.Time `json:"modify_time"` |
| 22 | CreateTime time.Time `json:"create_time"` |
| 23 | } |
| 24 | |
| 25 | // 文档结果 |
| 26 | type DocResult struct { |
nothing calls this directly
no outgoing calls
no test coverage detected