新火炬后端单体项目初始化代码
zhangherong
8 天以前 1eefb88049771407e0d0f9c8711bd473e44a1ba6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.jeecg.codegenerate;
 
import org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne;
import org.jeecgframework.codegenerate.generate.pojo.TableVo;
 
public class JeecgOneUtil {
    public static void main(String[] args) throws Exception {
        TableVo tableVo = new TableVo();
        tableVo.setTableName("sys_api_log");
        tableVo.setEntityName("SysApiLog");
        tableVo.setEntityPackage("system");
        tableVo.setFtlDescription("系统第三方集成接口日志");
        new CodeGenerateOne(tableVo).generateCodeFile(null);
    }
}