fix 修复 代码生成器 postgres 数据库主键类型映射错误问题

This commit is contained in:
疯狂的狮子Li 2024-09-24 18:17:49 +08:00
parent 64289c16f3
commit e3a25f2425

View File

@ -61,7 +61,7 @@ public interface GenConstants {
/**
* 数据库数字类型
*/
String[] COLUMNTYPE_NUMBER = {"tinyint", "smallint", "mediumint", "int", "number", "integer",
String[] COLUMNTYPE_NUMBER = {"tinyint", "smallint", "mediumint", "int", "int2", "int4", "int8", "number", "integer",
"bit", "bigint", "float", "double", "decimal", "numeric", "real", "double precision",
"smallserial", "serial", "bigserial", "money", "smallmoney"};