Commit c5e40399 by huluobin

update

parent e3b6c953
......@@ -128,10 +128,10 @@
left join customer cus on om.order_user = cus.id
where oc.technician_id = #{technicianId}
<if test="endTime != null">
and oc.create_time &lt; = #{endTime}
and oc.create_time &lt;= #{endTime}
</if>
<if test="startTime != null">
and oc.create_time &gt; = #{startTime}
and oc.create_time &gt;= #{startTime}
</if>
order by oc.create_time desc
</select>
......
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