Browse Source

fix: unsignedTypeMap type error (#2246)

fyyang 2 years ago
parent
commit
62abac0b7e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/goctl/model/sql/converter/types.go

+ 1 - 1
tools/goctl/model/sql/converter/types.go

@@ -11,7 +11,7 @@ var unsignedTypeMap = map[string]string{
 	"int":   "uint",
 	"int8":  "uint8",
 	"int16": "uint16",
-	"in32t": "uint32",
+	"int32": "uint32",
 	"int64": "uint64",
 }