diff --git a/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/dialect/JdbcTypeMapping.java b/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/dialect/JdbcTypeMapping.java index 97dcfa79..2184abf9 100644 --- a/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/dialect/JdbcTypeMapping.java +++ b/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/dialect/JdbcTypeMapping.java @@ -70,7 +70,7 @@ public class JdbcTypeMapping { registerMapping("java.time.LocalDate", "java.util.Date"); } - static String getType(String jdbcType, Table table, Column column) { + public static String getType(String jdbcType, Table table, Column column) { if (typeMapper != null) { String type = typeMapper.getType(jdbcType, table, column); if (StringUtil.isNotBlank(type)) {