Commit ccec9acf authored by hanfeng's avatar hanfeng

获取车辆详情接口

parent 0e7bf624
...@@ -358,6 +358,8 @@ public class BaseOrderController extends CommonBaseController implements UserRes ...@@ -358,6 +358,8 @@ public class BaseOrderController extends CommonBaseController implements UserRes
private List<String> vehicleIds; private List<String> vehicleIds;
private String oneNo;
//订单用户ID列表 //订单用户ID列表
private List<Integer> userIds; private List<Integer> userIds;
......
...@@ -151,6 +151,9 @@ ...@@ -151,6 +151,9 @@
<if test="no != null and no != '' "> <if test="no != null and no != '' ">
and no like CONCAT ("%", #{no}, "%") and no like CONCAT ("%", #{no}, "%")
</if> </if>
<if test="oneNo != null and oneNo != '' ">
and no =#{oneNo}
</if>
<if test="name != null"> <if test="name != null">
and b.name like CONCAT ("%", #{name}, "%") and b.name like CONCAT ("%", #{name}, "%")
</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