|
|
@@ -121,7 +121,7 @@
|
|
|
<if test="status != null and status != ''">
|
|
|
and tr.status = #{status, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
- <if test="authStatus != null and status != ''">
|
|
|
+ <if test="authStatus != null and status != '' and status != '0'">
|
|
|
and tr.auth_status = #{authStatus, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="startTime != null and startTime != '' " >
|
|
|
@@ -187,7 +187,7 @@
|
|
|
<if test="status != null and status != ''">
|
|
|
and tr.status = #{status, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
- <if test="authStatus != null and status != ''">
|
|
|
+ <if test="authStatus != null and status != '' and status != '0'">
|
|
|
and tr.auth_status = #{authStatus, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="startTime != null and startTime != '' " >
|
|
|
@@ -243,7 +243,7 @@
|
|
|
<if test="status != null and status != ''">
|
|
|
and tr.status = #{status, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
- <if test="authStatus != null and status != ''">
|
|
|
+ <if test="authStatus != null and status != '' and status != '0'">
|
|
|
and tr.auth_status = #{authStatus, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="startTime != null and startTime != '' " >
|
|
|
@@ -294,7 +294,7 @@
|
|
|
<if test="status != null and status != ''">
|
|
|
and status = #{status, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
- <if test="authStatus != null and status != ''">
|
|
|
+ <if test="authStatus != null and status != '' and status != '0'">
|
|
|
and auth_status = #{authStatus, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
ORDER BY create_time desc
|