|
@@ -15,7 +15,10 @@ import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
import java.io.File;
|
|
|
import java.io.Serializable;
|
|
|
-import java.util.*;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
@@ -34,10 +37,10 @@ public class ExportExamCaptureTask implements Task {
|
|
|
log.info("task start... " + params);
|
|
|
|
|
|
// 待导出的考试列表
|
|
|
- Set<Long> examIds = new HashSet<>();
|
|
|
+ List<Long> examIds = new ArrayList<>();
|
|
|
// examIds.add(14L);
|
|
|
- // examIds.add(2083L);
|
|
|
// examIds.add(2783L);
|
|
|
+ // examIds.add(2083L);
|
|
|
|
|
|
StringBuilder querySql = new StringBuilder()
|
|
|
.append("select rd.id as exam_record_data_id, rd.exam_student_id, stu.photo_path ")
|