5-21 - 修改bug

main
tianxinlei 2026-05-21 17:09:25 +08:00
parent c739e3980e
commit 1e6116b197
1 changed files with 2 additions and 2 deletions

View File

@ -38,10 +38,10 @@
</if>
<if test="params.startTime != null and params.startTime != ''">
and h.create_time >= #{params.startTime}
and h.create_time >= CONCAT(#{params.startTime}, ' 00:00:00')
</if>
<if test="params.endTime != null and params.endTime != ''">
and h.create_time &lt;= #{params.endTime}
and h.create_time &lt;= CONCAT(#{params.endTime}, ' 23:59:59')
</if>
<if test="params.keyProjectId != null and params.keyProjectId != ''">
and i.key_project_id = #{params.keyProjectId}