Files
JeecgBoot/jeecg-boot/src/main/java/org/jeecg/JeecgOneGUI.java
2019-04-14 16:20:04 +08:00

18 lines
366 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package org.jeecg;
import org.jeecgframework.codegenerate.window.CodeWindow;
/**
* @Title: 单表代码生成器入口
* @author 张代浩
* @site www.jeecg.org
* @versionV1.0.1
*/
public class JeecgOneGUI {
/** 详细使用手册: http://jeecg-boot.mydoc.io/?t=338140 */
public static void main(String[] args) {
new CodeWindow().pack();
}
}