/*
* 确认生成代码
*/
if (JOptionPane.OK_OPTION == JOptionPane.showConfirmDialog(ui, "确认生成代码?", "确认", JOptionPane.OK_CANCEL_OPTION)) {
// 3、调用生成器
Generator generator = GeneratorFactory.getGenerator(modelMetadata);
String codes = generator.generateCode(modelMetadata);
// System.out.println(codes);
if(StringUtils.isNotBlank(codes)) {
if(codes.startsWith("&@")) {
codes = codes.substring(2);
}