|
|
@@ -916,7 +916,8 @@ public class CalculatePremiumRequest implements Serializable {
|
|
|
CarKindCode carKindCode1 = Enum.valueOf(CarKindCode.class, CarKindCode.TITLE + carInfo.getCimodelclass());
|
|
|
this.carKindCode = carKindCode1.getCode();
|
|
|
|
|
|
- this.exhaustCapacity = vehicleModelInfosDTO.getExhaustCapacity();
|
|
|
+ this.exhaustCapacity = StringUtils.isNotEmpty(vehicleModelInfosDTO.getExhaustCapacity()) ?
|
|
|
+ vehicleModelInfosDTO.getExhaustCapacity() : "0";
|
|
|
this.oriCarKindName = carInfo.getCartype();
|
|
|
|
|
|
this.platVehicleCode = vehicleModelInfosDTO.getPlatVehicleCode();
|