新火炬后端单体项目初始化代码
zhangherong
9 天以前 e6d788eef335aa02ac306e984c44affa68ab971c
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);
    }
}