文档结果
| 24 | |
| 25 | // 文档结果 |
| 26 | type DocResult struct { |
| 27 | DocumentId int `json:"doc_id"` |
| 28 | DocumentName string `json:"doc_name"` |
| 29 | Identify string `json:"identify"` // Identify 文档唯一标识 |
| 30 | Release string `json:"release"` // Release 发布后的Html格式内容. |
| 31 | Vcnt int `json:"vcnt"` //书籍被浏览次数 |
| 32 | CreateTime time.Time `json:"create_time"` |
| 33 | BookId int `json:"book_id"` |
| 34 | BookIdentify string `json:"book_identify"` |
| 35 | BookName string `json:"book_name"` |
| 36 | } |
| 37 | |
| 38 | func NewDocumentSearchResult() *DocumentSearchResult { |
| 39 | return &DocumentSearchResult{} |
nothing calls this directly
no outgoing calls
no test coverage detected