当前使用版本(必填,否则不予处理)

com.baomidou mybatis-plus-generator 3.5.3.2

该问题是如何引起的?(确定最新版也有问题再提!!!)

问题:快速生成代码的时候配置策略,无法通过字段名称确定java类的类型。 MyBatis-Plus 快速生成代码的时候配置策略,无法通过字段名称确定java类的类型

构造函数中已传值: 部分源码如下: public MetaInfo(DatabaseMetaDataWrapper.Column column, TableInfo tableInfo) { if (column != null) { this.tableName = tableInfo.getName(); this.columnName = column.getName(); this.length = column.getLength(); this.nullable = column.isNullable(); this.remarks = column.getRemarks(); this.defaultValue = column.getDefaultValue(); this.scale = column.getScale(); this.jdbcType = column.getJdbcType(); this.typeName = column.getTypeName(); } }

源码中没有get方法 MyBatis-Plus 快速生成代码的时候配置策略,无法通过字段名称确定java类的类型

例如:我想指定几个字段is_delete、status等对应的java类型为Integer,这种怎么实现?

重现步骤(如果有就写完整)

报错信息

Comment From: simonkingws

坐等新版本发布