Эх сурвалжийг харах

Feat: ignorecolums add sort (#2648)

* add go-grpc_opt and go_opt for grpc new command

* feat: remove log when disable log

* feat: add sort

Co-authored-by: zhouyy <zhouyy@ickey.cn>
chowyu12 2 жил өмнө
parent
commit
ce1c02f4f9

+ 4 - 1
tools/goctl/model/sql/gen/vars.go

@@ -2,6 +2,7 @@ package gen
 
 import (
 	"fmt"
+	"sort"
 	"strings"
 
 	"github.com/zeromicro/go-zero/core/collection"
@@ -43,7 +44,9 @@ func genVars(table Table, withCache, postgreSql bool) (string, error) {
 					set.AddStr(fmt.Sprintf("\"`%s`\"", c))
 				}
 			}
-			return strings.Join(set.KeysStr(), ", ")
+			list := set.KeysStr()
+			sort.Strings(list)
+			return strings.Join(list, ", ")
 		}(),
 	})
 	if err != nil {