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

2.X
疯狂的狮子Li 2024-09-24 18:18:40 +08:00
parent 048e1e3f85
commit 48b172e6c9
1 changed files with 1 additions and 1 deletions

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"};