所有uint64 -> int64

This commit is contained in:
eson
2023-06-16 19:51:41 +08:00
parent 2399c2deeb
commit de05b0a78b
117 changed files with 280 additions and 280 deletions

View File

@@ -265,13 +265,13 @@ var typeForMysqlToGo = map[string]string{
"bigint": "*int64",
"year": "*int64",
"int unsigned": "*uint64",
"integer unsigned": "*uint64",
"tinyint unsigned": "*uint64",
"smallint unsigned": "*uint64",
"mediumint unsigned": "*uint64",
"bigint unsigned": "*uint64",
"bit": "*uint64",
"int unsigned": "*int64",
"integer unsigned": "*int64",
"tinyint unsigned": "*int64",
"smallint unsigned": "*int64",
"mediumint unsigned": "*int64",
"bigint unsigned": "*int64",
"bit": "*int64",
// 布尔类型
"bool": "*bool",