18 lines
740 B
XML
18 lines
740 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.qingqiu.interview.mapper.InterviewEvaluationMapper">
|
|
|
|
<select id="selectBySessionId" resultType="com.qingqiu.interview.entity.InterviewEvaluation">
|
|
SELECT * FROM interview_evaluation
|
|
WHERE session_id = #{sessionId}
|
|
ORDER BY created_time ASC
|
|
</select>
|
|
|
|
<select id="selectBySessionIdAndQuestionId" resultType="com.qingqiu.interview.entity.InterviewEvaluation">
|
|
SELECT * FROM interview_evaluation
|
|
WHERE session_id = #{sessionId} AND question_id = #{questionId}
|
|
LIMIT 1
|
|
</select>
|
|
|
|
</mapper>
|