fix: 代码生成错误问题修复

This commit is contained in:
Ray.Hao
2024-09-23 10:30:22 +08:00
parent bcc30a6bee
commit 37576f14cb
2 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ public enum JavaTypeEnum {
TINYINT("tinyint", "Integer", "number"),
SMALLINT("smallint", "Integer", "number"),
MEDIUMINT("mediumint", "Integer", "number"),
BIGINT("bigint", "Long", "bigint"),
BIGINT("bigint", "Long", "number"),
FLOAT("float", "Float", "number"),
DOUBLE("double", "Double", "number"),
DECIMAL("decimal", "BigDecimal", "number"),