@@ -332,7 +332,7 @@ public class BpmTaskAssignRuleServiceImpl implements BpmTaskAssignRuleService {
scripts.add(script);
});
// 逐个计算任务
- Set<Long> userIds = new HashSet<>();
+ Set<Long> userIds = new LinkedHashSet<>();
scripts.forEach(script -> CollUtil.addAll(userIds, script.calculateTaskCandidateUsers(execution)));
return userIds;
}