码农笔录博客源码
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
 
 
 
 

17 行
324 B

package service
import (
"beeblog/models"
"github.com/beego/beego/v2/client/orm"
)
type CategoryService struct {
}
func (this *CategoryService) GetCats() ([]*models.Category, error) {
var notes []*models.Category
o := orm.NewOrm()
qs := o.QueryTable(models.Category{})
_, err := qs.All(&notes)
return notes, err
}