|
@@ -157,6 +157,7 @@ public class ExamRecordServiceImpl implements ExamRecordService {
|
|
"record_data.paper_type paperType," +
|
|
"record_data.paper_type paperType," +
|
|
"record_data.paper_struct_id paperStructId," +
|
|
"record_data.paper_struct_id paperStructId," +
|
|
"record_data.info_collector infoCollector," +
|
|
"record_data.info_collector infoCollector," +
|
|
|
|
+ "audit.audit_user_name audit_user_name," +
|
|
"GROUP_CONCAT(DISTINCT process.source_ip) ip," +
|
|
"GROUP_CONCAT(DISTINCT process.source_ip) ip," +
|
|
"eoes.objective_score objectiveTotalScore," +
|
|
"eoes.objective_score objectiveTotalScore," +
|
|
"eoes.subjective_score subjectiveTotalScore," +
|
|
"eoes.subjective_score subjectiveTotalScore," +
|
|
@@ -166,6 +167,7 @@ public class ExamRecordServiceImpl implements ExamRecordService {
|
|
|
|
|
|
" from ec_oe_exam_record_data record_data " +
|
|
" from ec_oe_exam_record_data record_data " +
|
|
" LEFT JOIN ec_oe_exam_process_record AS process ON record_data.id = process.exam_record_data_id " +
|
|
" LEFT JOIN ec_oe_exam_process_record AS process ON record_data.id = process.exam_record_data_id " +
|
|
|
|
+ " LEFT JOIN ec_oe_exam_audit AS audit ON record_data.id = audit.exam_record_data_id " +
|
|
" LEFT JOIN ec_oe_exam_score eoes ON record_data.id = eoes.exam_record_data_id "+
|
|
" LEFT JOIN ec_oe_exam_score eoes ON record_data.id = eoes.exam_record_data_id "+
|
|
" LEFT JOIN ec_oe_exam_student eoest ON record_data.exam_student_id = eoest.exam_student_id "+
|
|
" LEFT JOIN ec_oe_exam_student eoest ON record_data.exam_student_id = eoest.exam_student_id "+
|
|
" where 1=1";
|
|
" where 1=1";
|