refactor: 代码生成支持数据库类型为longtext

代码生成支持数据库类型为longtext
This commit is contained in:
胡少翔
2024-10-15 13:59:38 +08:00
parent c5759b75fe
commit 558f90cf4d
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ public class ColumnMetaData {
/**
* 字段长度
*/
private Integer characterMaximumLength;
private Long characterMaximumLength;
/**
* 是否主键(1-是 0-否)

View File

@@ -40,7 +40,7 @@ public class GenFieldConfig extends BaseEntity {
/**
* 字段长度
*/
private Integer maxLength;
private Long maxLength;
/**
* 字段名称
@@ -103,4 +103,4 @@ public class GenFieldConfig extends BaseEntity {
* 字典类型
*/
private String dictType;
}
}