fix: 解决提报日期检索问题

pull/100/head
shuliYao 1 year ago committed by sunchenliang
parent 99d9c32d43
commit 80f007f03d

@ -577,10 +577,10 @@
</include> </include>
and pic.suspiciousfile = 0 and pic.suspiciousfile = 0
<if test="fromuptimeStart != null"> <if test="fromuptimeStart != null">
and tcp.fromuptime &gt;= ${fromuptimeStart} and tcp.fromuptime &gt;= ${fromuptimeStart.value}
</if> </if>
<if test="fromuptimeEnd != null"> <if test="fromuptimeEnd != null">
and tcp.fromuptime &lt;= ${fromuptimeEnd} and tcp.fromuptime &lt;= ${fromuptimeEnd.value}
</if> </if>
<if test="page != null"> <if test="page != null">
<if test="page.sortname != null"> <if test="page.sortname != null">
@ -612,10 +612,10 @@
</if> </if>
<if test="fromuptimeStart != null"> <if test="fromuptimeStart != null">
and tcp.fromuptime &gt;= ${fromuptimeStart} and tcp.fromuptime &gt;= ${fromuptimeStart.value}
</if> </if>
<if test="fromuptimeEnd != null"> <if test="fromuptimeEnd != null">
and tcp.fromuptime &lt;= ${fromuptimeEnd} and tcp.fromuptime &lt;= ${fromuptimeEnd.value}
</if> </if>
</select> </select>

Loading…
Cancel
Save