fix: QuartzLogMapper动态SQL布尔类型测试条件错误 (#34)

This commit is contained in:
ChiuJun 2024-02-07 17:58:43 +08:00 committed by GitHub
parent 8b0a0ddf2b
commit bd7bec06a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,7 +27,7 @@
<if test="criteria.jobName != null and criteria.jobName != ''">
AND job_name LIKE CONCAT('%',#{criteria.jobName},'%')
</if>
<if test="criteria.isSuccess != null and criteria.isSuccess != ''">
<if test="criteria.isSuccess != null">
AND is_success = #{criteria.isSuccess}
</if>
<if test="criteria.createTime != null and criteria.createTime.size() > 0">