36 lines
1.1 KiB
XML
Raw Permalink Normal View History

2026-03-10 14:30:24 +08:00
<?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="ExamPaperAuth">
<insert id="insertExamPaperAuth" parameterType="ExamPaperAuth">
INSERT INTO ExamPaperAuth ( examPaperId, objectId , objectType ) Values ( #{examPaperId}, #{objectId} , #{objectType} )
</insert>
<insert id="insertExamPaperAuthBatch" parameterType="java.util.List">
INSERT INTO ExamPaperAuth ( examPaperId, objectId , objectType ) Values
<foreach collection="list" index="index" item="item" separator=",">
( #{item.examPaperId}, #{item.objectId} , #{item.objectType} )
</foreach>
</insert>
<select id="getExamPaperAuthByKey" parameterType="java.util.HashMap" resultType="ExamPaperAuth">
SELECT examPaperId, objectId , objectType
FROM ExamPaperAuth WHERE examPaperId=#{examPaperId} and objectId = #{objectId} and objectType = #{objectType}
</select>
</mapper>