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);
|
}
|
}
|