diff --git a/business/model/dao/store.go b/business/model/dao/store.go index ea87453c6..d394667df 100644 --- a/business/model/dao/store.go +++ b/business/model/dao/store.go @@ -273,7 +273,7 @@ func GetStoresMapList2(db *DaoDB, vendorIDs, storeIDs, storeStatuss []int, statu if mustDirty { sql += " AND t1.sync_status <> 0" } - sql += " ORDER BY t1.store_id DESC, t1.vendor_id" + sql += " ORDER BY t1.store_id , t1.vendor_id" if err = GetRows(db, &storeMapList, sql, sqlParams...); err == nil { return storeMapList, nil }