mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
18 lines
350 B
Java
18 lines
350 B
Java
package org.jeecg;
|
|
|
|
import org.jeecgframework.codegenerate.window.CodeWindow;
|
|
|
|
/**
|
|
* @Title: 单表代码生成器入口
|
|
* @Author 张代浩
|
|
* @site www.jeecg.com
|
|
* @Version:V1.0.1
|
|
*/
|
|
public class JeecgOneGUI {
|
|
|
|
/** 使用手册: http://doc.jeecg.com/2684691 */
|
|
public static void main(String[] args) {
|
|
new CodeWindow().pack();
|
|
}
|
|
|
|
} |