wangliang 11 mēneši atpakaļ
vecāks
revīzija
170c43e4d3

+ 2 - 2
teachcloud-obe/src/main/resources/mapper/TCFinalScoreMapper.xml

@@ -54,10 +54,10 @@
             tcfs.student_code as studentCode,
             tcfs.score_detail as finalScoreDetail,
             tcus.score as usualScore,
-            group_concat(es.teach_clazz_name) as administrativeClass
+            group_concat(bes.teach_class_name) as administrativeClass
         from t_c_final_score tcfs
         join t_c_usual_score tcus on tcfs.course_id = tcus.course_id and tcfs.culture_program_id = tcus.culture_program_id and tcfs.student_code = tcus.student_code
-        left join exam_student es on es.exam_id = tcfs.exam_id and es.paper_number = tcfs.paper_number and es.student_code = tcfs.student_code
+        left join basic_exam_student bes on bes.exam_id = tcfs.exam_id and bes.paper_number = tcfs.paper_number and bes.student_code = tcfs.student_code
         <where>
             <if test="cultureProgramId != null and cultureProgramId != ''">
                 and tcfs.culture_program_id = #{cultureProgramId}