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

Struct DocumentSearchResult

models/document_search_result.go:12–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10)
11
12type 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// 文档结果
26type DocResult struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected