@@ -31,5 +31,10 @@ public class OrderTakingResp implements Serializable {
@Schema(description = "充值url")
private String chargeUrl;
+ /**
+ * 车辆类型
+ */
+ @Schema(description = "车辆类型(1-临时车, 2-月租车, 3-免费车, 5-充值车)")
+ private Integer carType;
}
@@ -1625,6 +1625,7 @@ public class WaybillOrderService {
} else {
OrderTakingResp resp = new OrderTakingResp();
resp.setChargeUrl(result.getData().getChargeUrl());
+ resp.setCarType(result.getData().getCarType());
return resp;