增加价格排序
This commit is contained in:
parent
af54243886
commit
c9458d0b60
|
@ -10,7 +10,8 @@ import (
|
||||||
func MilkProductList() (code int, productList []productsmodel.MilkProductsList) {
|
func MilkProductList() (code int, productList []productsmodel.MilkProductsList) {
|
||||||
err := productsmodel.GetInstance().GetDb().Alias("a").
|
err := productsmodel.GetInstance().GetDb().Alias("a").
|
||||||
Join("INNER", "brand b", "a.brand_id = b.id").
|
Join("INNER", "brand b", "a.brand_id = b.id").
|
||||||
Where("a.status = ?", 1).OrderBy("brand_id asc").Find(&productList)
|
Where("a.status = ?", 1).OrderBy("brand_id asc,price asc").Find(&productList)
|
||||||
|
|
||||||
return handErr(err), productList
|
return handErr(err), productList
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue