Commit 0814a199 authored by hezhen's avatar hezhen

123

parent 9f0542f8
......@@ -24,10 +24,10 @@
AND ( c.`parent_id` > 0 and c.root_parent_id = #{rootParentId} )
</if>
<if test="startTime != null and startTime > 0">
AND c.`create_time`>= #{startTime}
AND UNIX_TIMESTAMP(c.`create_time`) >= #{startTime}
</if>
<if test="endTime != null and endTime > 0">
AND c.`create_time` &lt;= #{endTime}
AND UNIX_TIMESTAMP(c.`create_time`) &lt;= #{endTime}
</if>
<if test="soureType != null and soureType > 0">
AND c.`soure_type`= #{soureType}
......
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