【修改】监控管理 学生判分结束返回值

This commit is contained in:
YOHO\20373
2025-06-27 10:06:48 +08:00
parent 28f4397061
commit 63d1abe6b7
4 changed files with 55 additions and 60 deletions

View File

@@ -145,6 +145,11 @@ select task_id from education_paper where paper_id=#{paperId}
AND em.tenant_id = #{loginTenantId}
ORDER BY em.paper_num;
</select>
<select id="selctStuScoreByStuIdAndPaperId" resultType="java.lang.Double">
SELECT COALESCE(SUM(score), 0.0)
FROM exam_stu_paper_score
WHERE stu_id = #{stuId} AND paper_id = #{paperId}
</select>
<insert id="insertEducationPaper" parameterType="EducationPaper">