Commit 03befd42 authored by jiaorz's avatar jiaorz

修改提前还车逻辑

parent a01b9724
......@@ -39,6 +39,8 @@ public class VehiclePlanDto extends PageParam {
*/
private Integer useType;
private Integer code;
/**
* 车型id
*/
......
......@@ -420,6 +420,9 @@
<if test="numberPlate != null and numberPlate != ''">
and v1.number_plate = #{numberPlate}
</if>
<if test="code != null and code != ''">
and v1.code = #{code}
</if>
<if test="companyIds != null and companyIds.size > 0">
and v1.park_branch_company_id in
<foreach collection="companyIds" item="id" open="(" separator="," close=")">
......
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