| | |
| | | where id = #{id,jdbcType=INTEGER} |
| | | </update> |
| | | |
| | | <update id="setMissExam"> |
| | | update t_exam_paper_answer |
| | | set invalid = 1 |
| | | where exam_paper_id = #{examPaperId} |
| | | and create_user in ( |
| | | <foreach collection="userIds" item="item" index="index" separator=","> |
| | | #{item} |
| | | </foreach> |
| | | ) |
| | | </update> |
| | | |
| | | |
| | | |
| | | |
| | | <select id="studentPage" resultMap="BaseResultMap" parameterType="com.mindskip.xzs.viewmodel.student.exampaper.ExamPaperAnswerPageVM"> |
| | | <select id="studentPage" resultMap="BaseResultMap" parameterType="com.mindskip.xzs.viewmodel.student.exampaper.ExamPaperAnswerPageVM"> |
| | | SELECT |
| | | <include refid="Base_Column_List"/> |
| | | FROM t_exam_paper_answer |