Commit 2585c728 by guominglei

时间类型转换

parent 41828822
...@@ -108,8 +108,8 @@ ...@@ -108,8 +108,8 @@
select select
<include refid="Base_Column_List" /> <include refid="Base_Column_List" />
from run_recording from run_recording
where start_time &gt;= ${startDate} where unix_timestamp(start_time) &gt;= ${startDate}
and end_time &lt;= ${endDate} and unix_timestamp(end_time) &lt;= ${endDate}
<if test="flowIds != null"> <if test="flowIds != null">
and flow_id in ( and flow_id in (
<foreach collection="flowIds" item="flowId" separator=","> <foreach collection="flowIds" item="flowId" separator=",">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment