mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-26 16:26:41 +08:00
18 lines
366 B
Java
18 lines
366 B
Java
package org.jeecg;
|
||
|
||
import org.jeecgframework.codegenerate.window.CodeWindow;
|
||
|
||
/**
|
||
* @Title: 单表代码生成器入口
|
||
* @author 张代浩
|
||
* @site www.jeecg.org
|
||
* @version:V1.0.1
|
||
*/
|
||
public class JeecgOneGUI {
|
||
|
||
/** 详细使用手册: http://jeecg-boot.mydoc.io/?t=338140 */
|
||
public static void main(String[] args) {
|
||
new CodeWindow().pack();
|
||
}
|
||
|
||
} |