ZeroBot-Plugin/plugin_cpstory/model.go
2021-12-26 22:21:00 +08:00

14 lines
224 B
Go

package cpstory
type cpstory struct {
ID int64 `db:"id"`
Gong string `db:"gong"`
Shou string `db:"shou"`
Story string `db:"story"`
}
func getRandomCpStory() (cs cpstory) {
_ = db.Pick("cp_story", &cs)
return
}