This commit is contained in:
suyl
2021-05-21 17:58:20 +08:00
parent 51e559a032
commit 0b5701f2bb

View File

@@ -4762,6 +4762,6 @@ func GetPageBrands(ctx *jxcontext.Context) (brands []*model.PageBrand, err error
sql := `
SELECT * FROM page_brand
`
dao.GetRow(db, &brands, sql)
dao.GetRows(db, &brands, sql)
return brands, err
}