|
@@ -34,8 +34,11 @@
|
|
|
<if test="tExamPageParam.semesterId != null and tExamPageParam.semesterId != ''">
|
|
<if test="tExamPageParam.semesterId != null and tExamPageParam.semesterId != ''">
|
|
|
and a.SEMESTER_ID = #{tExamPageParam.semesterId}
|
|
and a.SEMESTER_ID = #{tExamPageParam.semesterId}
|
|
|
</if>
|
|
</if>
|
|
|
- <if test="tExamPageParam.examType != null and tExamPageParam.examType != ''">
|
|
|
|
|
- and a.EXAM_TYPE = #{tExamPageParam.examType}
|
|
|
|
|
|
|
+ <if test="examTypesList != null">
|
|
|
|
|
+ and a.EXAM_TYPE in
|
|
|
|
|
+ <foreach collection="examTypesList" item="item" open="(" close=")" separator=",">
|
|
|
|
|
+ #{item}
|
|
|
|
|
+ </foreach>
|
|
|
</if>
|
|
</if>
|
|
|
<if test="tExamPageParam.createUser != null and tExamPageParam.createUser != ''">
|
|
<if test="tExamPageParam.createUser != null and tExamPageParam.createUser != ''">
|
|
|
and a.CREATE_USER = #{tExamPageParam.createUser}
|
|
and a.CREATE_USER = #{tExamPageParam.createUser}
|