@@ -189,7 +189,7 @@ public class BatchImportExamStudentTask implements TaskService {
List<String> failRecords = Collections.synchronizedList(new ArrayList<>());
long startTime = System.currentTimeMillis();
AtomicInteger successCount = new AtomicInteger(), failCount = new AtomicInteger();
- if (total <= 50) {
+ if (total <= 1000) {
// 数量少,正常执行
this.normalRun(loginUser, dataList, successCount, failCount, task.getId(), failRecords);
} else {