修复代码生成器编辑数据表,不能保存java类型

This commit is contained in:
hawk 2022-09-23 07:56:15 +08:00
parent a70c5f6fc3
commit 04a5d121a8
1 changed files with 1 additions and 0 deletions

View File

@ -248,6 +248,7 @@ public class GenerateServiceImpl implements IGenerateService {
GenTableColumn column = genTableColumnMapper.selectById(id);
column.setColumnComment(item.get("columnComment"));
column.setJavaField(item.get("javaField"));
column.setJavaType(item.get("javaType"));
column.setIsRequired(Integer.parseInt(item.get("isRequired")));
column.setIsInsert(Integer.parseInt(item.get("isInsert")));
column.setIsEdit(Integer.parseInt(item.get("isEdit")));