소스 검색

在线考试2022/05/20临时上线需求更改,缺考修改

wangliang 3 년 전
부모
커밋
f468c7171f
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      themis-business/src/main/resources/mapper/TEExamStudentMapper.xml

+ 6 - 6
themis-business/src/main/resources/mapper/TEExamStudentMapper.xml

@@ -284,9 +284,9 @@
         t.id
         from
         t_e_exam_student t
-        left join t_e_exam_activity f on
+        join t_e_exam_activity f on
         t.exam_activity_id = f.id
-        left join t_e_exam tee on
+        join t_e_exam tee on
         tee.id = t.exam_id
         where
         NOT EXISTS(
@@ -331,13 +331,13 @@
         t.id
         from
         t_oe_exam_record toer
-        left join t_e_exam_student t on
+        join t_e_exam_student t on
         t.id = toer.exam_student_id
         and t.exam_id = toer.exam_id
         and t.exam_activity_id = toer.exam_activity_id
-        left join t_e_exam_activity f on
+        join t_e_exam_activity f on
         t.exam_activity_id = f.id
-        left join t_e_exam tee on
+        join t_e_exam tee on
         tee.id = t.exam_id
         where
         toer.exam_id = #{examId}
@@ -371,7 +371,7 @@
         distinct t.exam_student_id as id
         from
         t_oe_exam_record t
-        left join t_e_exam_student s on
+        join t_e_exam_student s on
         t.exam_student_id = s.id
         where
         t.exam_id = #{examId}