Skip to content

Commit

Permalink
fix 修复 代码书写错误
Browse files Browse the repository at this point in the history
  • Loading branch information
JavaLionLi committed Oct 21, 2024
1 parent 503a0ef commit 9018dcb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public Boolean saveOrUpdate(WfDefinitionConfigBo bo) {
baseMapper.delete(new LambdaQueryWrapper<WfDefinitionConfig>().eq(WfDefinitionConfig::getTableName, bo.getTableName()));
add.setTableName(add.getTableName().toLowerCase());
boolean flag = baseMapper.insertOrUpdate(add);
if (baseMapper.insertOrUpdate(add)) {
if (flag) {
bo.setId(add.getId());
}
return flag;
Expand Down

0 comments on commit 9018dcb

Please sign in to comment.