Skip to content

Commit

Permalink
fix: 微调
Browse files Browse the repository at this point in the history
  • Loading branch information
cai3178940 committed Feb 14, 2020
1 parent c2dd4c6 commit b75497a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
5. 外键关联:在添加字段的时候,可以设置该字段是否外键,外键字段需要关联某个实体的主键,从而可以实现`一对一``一对多`关联。
6. 级联扩展:外键字段或多对多实体上可以配置级联字段,级联字段可以作为被关联实体的查询条件,也能作为查询结果展示。
7. 实体ER图:可以在实体列表页选择多个存在关联关系的实体,点击`查看ER图`按钮,即可生成实体关系图。
8. 代码预览:不需要下载就可以在线浏览生成的代码。
8. 代码预览:不需要下载就可以在线浏览生成的代码,还能预览元数据变动后新生成的代码与之前的差异。
9. 3.2.0新功能:可生成excel导入导出功能
(基于<a href="https://github.com/alibaba/easyexcel" target="_blank">easyexcel</a>),
可选择是否使用lombok插件。

**【git增量生成功能】是本系统最核心的功能。**

Expand Down
8 changes: 4 additions & 4 deletions youran-generate-release/assembly/conf/application-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ logging:
java:
sql: debug
com:
youran: trace
swagger:
enabled: true
youran: debug

youran:
# 缓存数据目录,用来临时存储模板文件、生成的代码文件,每次启动都会清空该目录
data-dir: D:\\youran
# 启动时初始化用户表
default-user-init: true
security-enabled: false
2 changes: 2 additions & 0 deletions youran-generate-web/src/main/resources/application-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ logging:
swagger:
enabled: true
youran:
# 缓存数据目录,用来临时存储模板文件、生成的代码文件,每次启动都会清空该目录
data-dir: D:\\youran
# 启动时初始化用户表
default-user-init: true
# 0:非开发模式 1:开发模式-全量替换 2:开发模式-增量替换
dev-mode: 0
Expand Down
2 changes: 1 addition & 1 deletion youran-generate-web/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ youran:
version: 3.2.0
api-path: /api
ws-api-path: /ws_api
security-enabled: true
security-enabled: false

0 comments on commit b75497a

Please sign in to comment.