Commit e25a9580 authored by jiaorz's avatar jiaorz

添加积分补充接口

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