Commit 17886c57 authored by jiaorz's avatar jiaorz

后台功能优化,车辆新加托管人筛选字段

parent c24f8704
...@@ -49,6 +49,11 @@ public class VehiclePageQueryVo { ...@@ -49,6 +49,11 @@ public class VehiclePageQueryVo {
* 用途类型:租赁房车(1)、展车等,对应关系见车辆常量表 * 用途类型:租赁房车(1)、展车等,对应关系见车辆常量表
*/ */
private Integer useType; private Integer useType;
/**
* 托管人
*/
private String belongToName;
/** /**
* 预定目标日期(开始) * 预定目标日期(开始)
*/ */
......
...@@ -114,6 +114,9 @@ ...@@ -114,6 +114,9 @@
<if test="insuranceCompany !=null"> <if test="insuranceCompany !=null">
and v.insurance_company = #{insuranceCompany} and v.insurance_company = #{insuranceCompany}
</if> </if>
<if test="belongToName !=null">
and v.belong_to_name = #{belongToName}
</if>
<if test="vin !=null and vin != ''"> <if test="vin !=null and vin != ''">
and v.vin = #{vin} and v.vin = #{vin}
</if> </if>
...@@ -266,6 +269,9 @@ ...@@ -266,6 +269,9 @@
<if test="insuranceCompany !=null"> <if test="insuranceCompany !=null">
and v.insurance_company = #{insuranceCompany} and v.insurance_company = #{insuranceCompany}
</if> </if>
<if test="belongToName !=null">
and v.belong_to_name = #{belongToName}
</if>
<if test="vin !=null and vin != ''"> <if test="vin !=null and vin != ''">
and v.vin = #{vin} and v.vin = #{vin}
</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