MCPcopy Create free account
hub / github.com/TruthHun/BookStack / DocResult

Struct DocResult

models/document_search_result.go:26–36  ·  view source on GitHub ↗

文档结果

Source from the content-addressed store, hash-verified

24
25// 文档结果
26type 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
38func NewDocumentSearchResult() *DocumentSearchResult {
39 return &DocumentSearchResult{}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected