Commit e25a9580 authored by jiaorz's avatar jiaorz

添加积分补充接口

parent 5a249dd3
...@@ -34,5 +34,9 @@ public class VehiclePlanDto extends PageParam { ...@@ -34,5 +34,9 @@ public class VehiclePlanDto extends PageParam {
private Integer zoneId; private Integer zoneId;
private List<Integer> companyIds; private List<Integer> companyIds;
/**
* 车辆用途 1、租赁,2、自用
*/
private Integer useType;
} }
...@@ -389,6 +389,9 @@ ...@@ -389,6 +389,9 @@
<if test="zoneId !=null"> <if test="zoneId !=null">
and bc2.zone_id = #{zoneId} and bc2.zone_id = #{zoneId}
</if> </if>
<if test="useType != null">
and v1.use_type = #{useType}
</if>
and v1.is_del != 1 and v1.is_del != 1
</where> </where>
</select> </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