|
|
@@ -45,6 +45,7 @@
|
|
|
<if test="dto.teacherId != null">
|
|
|
and t7.teacher_id = #{dto.teacherId}
|
|
|
</if>
|
|
|
+ order by t.id desc
|
|
|
</select>
|
|
|
|
|
|
<select id="getInfo" resultType="com.xjrsoft.module.student.vo.BaseStudentAssessmentInspectionVo">
|
|
|
@@ -78,7 +79,7 @@
|
|
|
LEFT JOIN base_student_assessment_category t2 ON (t2.id = t1.base_student_assessment_category_id)
|
|
|
LEFT JOIN base_student_assessment_project t3 ON (t3.id = t1.base_student_assessment_project_id)
|
|
|
LEFT JOIN base_student_assessment_item t6 ON (t6.id = t1.base_student_assessment_item_id)
|
|
|
- LEFT JOIN xjr_dictionary_detail t4 ON t4.code=t1.score_type
|
|
|
+ LEFT JOIN xjr_dictionary_detail t4 ON t4.code = t1.score_type
|
|
|
LEFT JOIN base_class t5 ON t5.id=t.class_id
|
|
|
WHERE t1.delete_mark = 0 and t1.enabled_mark = 1 and t.class_id in
|
|
|
<foreach item="classId" index="index" collection="dto.classIds" open="(" close=")" separator=",">
|
|
|
@@ -96,6 +97,7 @@
|
|
|
<if test="dto.endDate != null and dto.endDate != ''">
|
|
|
and t1.assessment_date <= #{dto.endDate}
|
|
|
</if>
|
|
|
+ order by t1.id desc
|
|
|
</select>
|
|
|
|
|
|
<select id="getMobileInfo" resultType="com.xjrsoft.module.student.vo.BaseStudentAssessmentInspectionMobileVo">
|