5-21 - 修改bug
parent
c739e3980e
commit
1e6116b197
|
|
@ -38,10 +38,10 @@
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
<if test="params.startTime != null and params.startTime != ''">
|
<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>
|
||||||
<if test="params.endTime != null and params.endTime != ''">
|
<if test="params.endTime != null and params.endTime != ''">
|
||||||
and h.create_time <= #{params.endTime}
|
and h.create_time <= CONCAT(#{params.endTime}, ' 23:59:59')
|
||||||
</if>
|
</if>
|
||||||
<if test="params.keyProjectId != null and params.keyProjectId != ''">
|
<if test="params.keyProjectId != null and params.keyProjectId != ''">
|
||||||
and i.key_project_id = #{params.keyProjectId}
|
and i.key_project_id = #{params.keyProjectId}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue