升级代码生成器版本

pull/158/head
zhangdaihao 2019-05-27 19:21:29 +08:00
parent 26cb289032
commit 4cfc3d3c84
1 changed files with 5 additions and 1 deletions

View File

@ -60,6 +60,10 @@ public class JeecgOneToMainUtil {
mainTable.setSubTables(subTables);
//第三步:一对多(父子表)数据模型,代码生成
new CodeGenerateOneToMany(mainTable,subTables).generateCodeFile();
try {
new CodeGenerateOneToMany(mainTable,subTables).generateCodeFile();
} catch (Exception e) {
e.printStackTrace();
}
}
}