|
|
@@ -75,6 +75,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="startTime != null and startTime != ''">
|
|
|
AND t.start_time BETWEEN #{startTime} and #{endTime}
|
|
|
</if>
|
|
|
+ <if test="examTypeId != null and examTypeId != ''">
|
|
|
+ AND e.exam_type_id = #{examTypeId}
|
|
|
+ </if>
|
|
|
+ <if test="examPeriod != null and examPeriod != ''">
|
|
|
+ AND e.exam_period = #{examPeriod}
|
|
|
+ </if>
|
|
|
+ <if test="idCard != null and idCard != ''">
|
|
|
+ AND u.id_card = #{idCard}
|
|
|
+ </if>
|
|
|
+ <if test="realname != null and realname != ''">
|
|
|
+ AND u.realname = #{realname}
|
|
|
+ </if>
|
|
|
|
|
|
</select>
|
|
|
|