|
@@ -1,6 +1,7 @@
|
|
|
package cn.com.qmth.dp.examcloud.oe.test;
|
|
|
|
|
|
import cn.com.qmth.dp.examcloud.oe.Tianji2App;
|
|
|
+import cn.com.qmth.dp.examcloud.oe.modules.export_exam_record_sql_file.ExportExamRecordSqlFile;
|
|
|
import cn.com.qmth.dp.examcloud.oe.modules.export_exam_student_score.ExportExamStudentScore;
|
|
|
import cn.com.qmth.dp.examcloud.oe.modules.get_student_answer_detail.GetStduentAnswerDetailService;
|
|
|
import cn.com.qmth.dp.examcloud.oe.modules.get_student_one_question_answer.GetStduentOneAnswerService;
|
|
@@ -17,6 +18,9 @@ public class ExportTest {
|
|
|
@Autowired
|
|
|
private ExportExamStudentScore exportExamStudentScore;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private ExportExamRecordSqlFile exportExamRecordSqlFile;
|
|
|
+
|
|
|
@Autowired
|
|
|
private GetStduentOneAnswerService studentOneAnswerService;
|
|
|
|
|
@@ -25,8 +29,11 @@ public class ExportTest {
|
|
|
|
|
|
@Test
|
|
|
public void exportTest() throws Exception {
|
|
|
- // 导出 - 小题分
|
|
|
- exportExamStudentScore.start();
|
|
|
+ // 导出 - 成绩明细 带小题分
|
|
|
+ // exportExamStudentScore.start();
|
|
|
+
|
|
|
+ // 导出 - 考试明细SQL文件
|
|
|
+ exportExamRecordSqlFile.start();
|
|
|
|
|
|
// 导出 - 考生作答结果(带手机号)
|
|
|
// studentOneAnswerService.start(1213L, 1, "01");
|