龚焕茏
2024-05-30 1c89a9d39893c18aac63aa5763b4787b65de3624
src/main/resources/mapper/ExamPaperDepartment.xml
@@ -39,4 +39,13 @@
        delete from t_exam_paper_department
        where exam_paper_id = #{id}
    </delete>
    <delete id="removeByExamPaperIds" parameterType="java.lang.Integer">
        delete from t_exam_paper_department
        where exam_paper_id in
        <foreach item="id" collection="ids" open="(" separator=","
                 close=")">
            #{id}
        </foreach>
    </delete>
</mapper>