Browse Source

修改bug

yjp 3 weeks ago
parent
commit
409cf47937
1 changed files with 1 additions and 1 deletions
  1. 1 1
      framework/core/infrastructure/database/clause/order_by.go

+ 1 - 1
framework/core/infrastructure/database/clause/order_by.go

@@ -19,7 +19,7 @@ func (clause *OrderBy) Clause() (string, error) {
 		return "", nil
 	}
 
-	order := " AES"
+	order := " ASC"
 	if !clause.aes {
 		order = " DESC"
 	}