|
@@ -35,8 +35,16 @@
|
|
<if test="status != null">
|
|
<if test="status != null">
|
|
AND t.status = #{status}
|
|
AND t.status = #{status}
|
|
</if>
|
|
</if>
|
|
|
|
+
|
|
<if test="faceOpen != null">
|
|
<if test="faceOpen != null">
|
|
- AND a.face_open = #{faceOpen}
|
|
|
|
|
|
+ <choose>
|
|
|
|
+ <when test="faceOpen">
|
|
|
|
+ AND a.face_open = 1
|
|
|
|
+ </when>
|
|
|
|
+ <otherwise>
|
|
|
|
+ AND a.face_open = 0
|
|
|
|
+ </otherwise>
|
|
|
|
+ </choose>
|
|
</if>
|
|
</if>
|
|
<if test="createStartTime != null and createStartTime != '' ">
|
|
<if test="createStartTime != null and createStartTime != '' ">
|
|
<![CDATA[
|
|
<![CDATA[
|