查询报错

This commit is contained in:
王奎兴
2026-06-23 20:39:58 +08:00
parent fe2dcc027b
commit cf22323cfe
17 changed files with 137 additions and 4 deletions
@@ -312,11 +312,17 @@
<if test="auditTimeEnd != null and auditTimeEnd != ''">
and date_format(a.audit_time,'%Y-%m-%d') &lt;= #{auditTimeEnd}
</if>
<if test="createTimeFrom != null and createTimeFrom != ''">
and date_format(a.create_time,'%Y-%m-%d') &gt;= #{createTimeFrom}
</if>
<if test="createTimeTo != null and createTimeTo != ''">
and date_format(a.create_time,'%Y-%m-%d') &lt;= #{createTimeTo}
</if>
<if test="pushTimeFrom != null">
and PUSH_TIME <![CDATA[>=]]> #{pushTimeFrom}
and a.PUSH_TIME <![CDATA[>=]]> #{pushTimeFrom}
</if>
<if test="pushTimeTo != null">
and PUSH_TIME <![CDATA[<=]]> #{pushTimeTo}
and a.PUSH_TIME <![CDATA[<=]]> #{pushTimeTo}
</if>
<if test="pushStatus != null">
and a.PUSH_STATUS = #{pushStatus}