Commit 2fc08012 authored by 马超's avatar 马超

doc: hibernate自动填充变更

parent 1327dcbc
...@@ -24,6 +24,106 @@ ...@@ -24,6 +24,106 @@
## 2021-07-30
版本号: **1.2.48**
**base-service**
`Feat`
1. 云存储上传、下载、删除实现
2. 流程状态值自动填充
3. 流程状态字典项、实体扩展字典项
`other`
1. 接口审计日志写到业务库的实现,注解`@SysAuditLog`,默认为写业务库,需要创建数据表
**gen-service**
`feat`
1. 代码生成集成流程处理相关接口(提交、审批、回调等)
2. 模型添加扩展属性(流程、附件)
`fix`
1. 修复mybatis版本单据删除时条件错误问题
2. 前端代码下载时替换服务名
**mcs-ui**
`feat`
1. 模型设计增加流程状态
2. 模型设计添加扩展属性选项卡
3. 视图设计模板中增加流程审批逻辑
4. 新版视图设计中增加附件上传逻辑
`other`
1. 优化模型设计关联配置
2. 优化视图设计模型筛选逻辑
**bpm-service**
版本:**1.0.25**
`feat`
1. 新增开放接口检查用户是否拥有审批权限
2. 流程拥有多个节点拥有相同审批人只需要审批一次,需要添加配置
`Fix`
1. 修复orgId值为null导致获取认领人失败的问题
2. 修复流程回调接口异步导致无法获取token的问题
3. 修复模型列表名称过滤问题
4. 修复开放接口审批记录顺序
**bpm-ui**
`other`
1. 修复流程模型中复制模型数据不正确的问题
2. 修复模型列表排序问题
3. 修复绑定表单查询框过滤条件传值问题
### 本次更新方式
1. 替换ldp-manage/fatjar 目录下对应的jar包
2. 替换nginx中mcs、bpm的前端代码
3. 脚手架更新到`1.2.48`
- 审计日志变更为默认写入到业务库,需要在业务库中创建日志表
- bpm相同审批人跳过功能配置,修改NACOS上bpm-service-dev.yml、bpm-service-prod.yml
```yml
ldp:
flowable:
skip-approve-when-same-assign-user: true
```
## 2021-07-19 ## 2021-07-19
版本号: **1.2.47** 版本号: **1.2.47**
......
...@@ -231,6 +231,16 @@ public RestResult getListByJdbc(@RequestParamMap(typeCovertMapping = ExampleUser ...@@ -231,6 +231,16 @@ public RestResult getListByJdbc(@RequestParamMap(typeCovertMapping = ExampleUser
**使用时需传递 moduleKey(模块名称,如果是新模块需提前建立表,以ldp_audit_log_ 开头+ modulekey 录入的值结尾的表 如ldp_audit_log_example , 表结构可参考 ldp_audit_log_sys), subKey 子模块名称最终会保存在日志中作为二级子模块**; **使用时需传递 moduleKey(模块名称,如果是新模块需提前建立表,以ldp_audit_log_ 开头+ modulekey 录入的值结尾的表 如ldp_audit_log_example , 表结构可参考 ldp_audit_log_sys), subKey 子模块名称最终会保存在日志中作为二级子模块**;
#### 3.2.3 版本变更(1.2.48以上)
注解增加属性`service`,值为枚举值`DynamicLogBizServiceEnum.INTERNAL` 或者 `DynamicLogBizServiceEnum.EXTERNAL`默认为`DynamicLogBizServiceEnum.EXTERNAL`,和之前版本的区分为:
EXTERNAL:需要在业务库中创建日志表。
INTERNAL:是调用dubbo rpc接口来存放日志,需要在LDP-MCS对应的数据库中创建日志表,并且需要依赖`internal-common-service`
RESTFUl:是使用REST请求调用mcs接口来存放日志
### 3.3. @SysJobLog ### 3.3. @SysJobLog
#### 3.3.1 注解介绍 #### 3.3.1 注解介绍
......
...@@ -26,6 +26,8 @@ ldp: ...@@ -26,6 +26,8 @@ ldp:
hidden-assign-button: true hidden-assign-button: true
# 隐藏委派按钮 # 隐藏委派按钮
hidden-delegate-button: true hidden-delegate-button: true
# 1.2.47版本后新增相同审批人跳过逻辑,需要跳过则配置为true
skip-approve-when-same-assign-user: true
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment