MCPcopy Index your code
hub / github.com/TruthHun/BookStack / FindByIdentify

Method FindByIdentify

models/book.go:224–229  ·  view source on GitHub ↗
(identify string, cols ...string)

Source from the content-addressed store, hash-verified

222}
223
224func (m *Book) FindByIdentify(identify string, cols ...string) (book *Book, err error) {
225 o := orm.NewOrm()
226 book = &Book{}
227 err = o.QueryTable(m.TableNameWithPrefix()).Filter("identify", identify).One(book, cols...)
228 return
229}
230
231//分页查询指定用户的书籍
232//按照最新的进行排序

Callers 15

DeleteBookMethod · 0.95
BookInfoMethod · 0.95
ReadMethod · 0.95
Export2MarkdownMethod · 0.95
ReadBookMethod · 0.45
EditMethod · 0.45
CreateMethod · 0.45
UploadMethod · 0.45
DownloadAttachmentMethod · 0.45
DeleteMethod · 0.45
ContentMethod · 0.45
ExportOldMethod · 0.45

Calls 1

TableNameWithPrefixMethod · 0.95

Tested by

no test coverage detected