blade-service/blade-mdm/src/main/java/org/springblade/mdm/program/service/DncBackFileService.java
@@ -66,12 +66,10 @@ * 检查流程实例是否被执行过(通过历史记录) */ public boolean isProcessExecuted(String processInstanceId) { // 检查是否有历史活动记录 /* long activityCount = historyService.createHistoricActivityInstanceQuery() .processInstanceId(processInstanceId) .count(); */ if(StringUtils.isBlank(processInstanceId)){ //空流程实例id,说明节点已经没有了 return true; } // 检查是否有历史任务记录 long taskCount = historyService.createHistoricTaskInstanceQuery() .processInstanceId(processInstanceId)