소스 검색

紫金新能源排量问题

wks 2 년 전
부모
커밋
d12ea1879c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/main/java/com/ydtech/modules/order/entity/api/zijin/request/CalculatePremiumRequest.java

+ 2 - 1
src/main/java/com/ydtech/modules/order/entity/api/zijin/request/CalculatePremiumRequest.java

@@ -978,7 +978,8 @@ public class CalculatePremiumRequest implements Serializable {
             this.purchasePrice = vehicleModelInfosDTO.getPurchasePrice();
             this.vehicleId = vehicleModelInfosDTO.getVehicleId();
             this.brandName = vehicleModelInfosDTO.getModelName();
-            this.exhaustCapacity = vehicleModelInfosDTO.getExhaustCapacity();
+            this.exhaustCapacity = StringUtils.isNotEmpty(vehicleModelInfosDTO.getExhaustCapacity()) ?
+                    vehicleModelInfosDTO.getExhaustCapacity() : "0";
             this.platVehicleCode = vehicleModelInfosDTO.getPlatVehicleCode();
             this.modelEnergyType = vehicleModelInfosDTO.getPowerTypeCode();
             this.printModelName = vehicleModelInfosDTO.getModelName();