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