|
|
@@ -104,7 +104,7 @@ public class WorkflowStepServiceImpl extends ServiceImpl<WorkflowStepMapper, Wor
|
|
|
public void deleteWorkflowStepListByIds(List<Long> ids) {
|
|
|
// 删除
|
|
|
if (!ids.isEmpty()) {
|
|
|
- workflowStepMapper.physicalDeleteByIds(ids);
|
|
|
+ workflowStepMapper.deleteByIds(ids);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -116,7 +116,7 @@ public class WorkflowStepServiceImpl extends ServiceImpl<WorkflowStepMapper, Wor
|
|
|
@Override
|
|
|
public void deleteWorkflowStepList(List<Long> ids) {
|
|
|
if (!ids.isEmpty()) {
|
|
|
- workflowStepMapper.physicalDeleteByIds(ids);
|
|
|
+ workflowStepMapper.deleteByIds(ids);
|
|
|
}
|
|
|
}
|
|
|
|