2025-01-21 00:12:53 +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="cn.iocoder.yudao.module.exam.mapper.ExamBatchMapper">
|
|
|
|
|
|
|
|
|
|
<select id="queryListPage" resultType="cn.iocoder.yudao.module.exam.vo.ExamBatchVO">
|
|
|
|
|
SELECT
|
|
|
|
|
dseb.*
|
|
|
|
|
FROM
|
|
|
|
|
drive_school_exam_batch dseb
|
|
|
|
|
WHERE dseb.deleted=0
|
|
|
|
|
<if test="entity.coachId != null and entity.coachId != ''">
|
2025-02-06 18:42:41 +08:00
|
|
|
and dseb.coach_id =#{entity.coachId}
|
2025-01-21 00:12:53 +08:00
|
|
|
</if>
|
|
|
|
|
<if test="entity.courseId != null and entity.courseId != ''">
|
2025-02-06 18:42:41 +08:00
|
|
|
and dseb.course_id =#{entity.courseId}
|
2025-01-21 00:12:53 +08:00
|
|
|
</if>
|
|
|
|
|
<if test="entity.subject != null and entity.subject != ''">
|
2025-02-06 18:42:41 +08:00
|
|
|
and dseb.subject =#{entity.subject}
|
2025-01-21 00:12:53 +08:00
|
|
|
</if>
|
|
|
|
|
ORDER BY dseb.create_time
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|