Browse Source

更新

master
huangjiajun 6 months ago
parent
commit
a3e83a8ec5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/db/db_order_list.go

+ 1
- 1
app/db/db_order_list.go View File

@@ -171,7 +171,7 @@ func GetOrderListOutput(eg *xorm.Engine, param map[string]string) *[]model.Order
} }
sess.In("enterprise_id", oids) sess.In("enterprise_id", oids)
} }
err := sess.OrderBy("id asc").Find(&order)
err := sess.OrderBy("id desc").Find(&order)
if err != nil { if err != nil {
return nil return nil
} }


Loading…
Cancel
Save