【新增】 学生交卷之后,查询信息列表

This commit is contained in:
DESKTOP-932OMT8\REN
2025-05-17 23:40:22 +08:00
parent c2f14940c1
commit 1dcff7cc07
12 changed files with 312 additions and 138 deletions

View File

@@ -17,7 +17,8 @@
SELECT
esps.stu_id AS stuId,
esps.paper_id AS paperId,
esps.all_score AS score,
esps.score AS score,
esps.true_score AS trueScore,
su.username AS stuNumber,
su.nickname AS nickName
FROM
@@ -25,5 +26,9 @@
LEFT JOIN system_users AS su ON esps.stu_id = su.id
WHERE esps.stu_id = #{stuId} AND esps.paper_id = #{paperId}
</select>
<select id="findByStuIdAndPaperIdAndQuestionId" resultType="pc.exam.pp.module.exam.dal.dataobject.student.StuPaperScoreDO">
SELECT * FROM exam_stu_paper_score WHERE stu_id = #{stuId} AND paper_id = #{paperId} AND qu_id = #{quId}
</select>
</mapper>