mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 22:00:11 +08:00
22 lines
425 B
Go
22 lines
425 B
Go
package bookreview
|
|
|
|
import sql "github.com/FloatTech/sqlite"
|
|
|
|
type book struct {
|
|
ID uint64 `db:"id"`
|
|
BookReview string `db:"bookreview"`
|
|
}
|
|
|
|
var db = &sql.Sqlite{}
|
|
|
|
// 暂时随机选择一个书评
|
|
func getBookReviewByKeyword(keyword string) (b book) {
|
|
_ = db.Find("bookreview", &b, "where bookreview LIKE '%"+keyword+"%'")
|
|
return
|
|
}
|
|
|
|
func getRandomBookReview() (b book) {
|
|
_ = db.Pick("bookreview", &b)
|
|
return
|
|
}
|