Commit 72e50c17 authored by jiaorz's avatar jiaorz

后台订单接口优化

parent ce55c247
...@@ -286,6 +286,12 @@ ...@@ -286,6 +286,12 @@
<if test="no != null and no != '' "> <if test="no != null and no != '' ">
and b1.no like CONCAT ("%", #{no}, "%") and b1.no like CONCAT ("%", #{no}, "%")
</if> </if>
<if test="plateNumber != null and plateNumber != '' ">
and v1.number_plate like CONCAT ("%", #{plateNumber}, "%")
</if>
<if test="vehicleCode != null">
and o1.code = #{vehicleCode}
</if>
<if test="startTime != null"> <if test="startTime != null">
and o1.start_time between #{startTime} and #{endTime} and o1.start_time between #{startTime} and #{endTime}
</if> </if>
......
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