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