|
@@ -49,6 +49,12 @@ public class ExternalOrderFeeVo {
|
|
|
@ApiModelProperty(value = "商业总比例")
|
|
@ApiModelProperty(value = "商业总比例")
|
|
|
private BigDecimal syRadio;
|
|
private BigDecimal syRadio;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "前端驾意")
|
|
|
|
|
+ private BigDecimal jyPremium;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "前端驾意比例")
|
|
|
|
|
+ private BigDecimal jyRadio;
|
|
|
|
|
+
|
|
|
@ApiModelProperty(value = "驾意保费")
|
|
@ApiModelProperty(value = "驾意保费")
|
|
|
private BigDecimal noPremium;
|
|
private BigDecimal noPremium;
|
|
|
|
|
|
|
@@ -107,6 +113,13 @@ public class ExternalOrderFeeVo {
|
|
|
this.noRadio = new BigDecimal(BigInteger.ZERO);
|
|
this.noRadio = new BigDecimal(BigInteger.ZERO);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ if(!Objects.isNull(this.jyPremium) && !this.jyPremium.equals("") && !this.jyPremium.equals("0")){
|
|
|
|
|
+ this.noPremium = this.jyPremium;
|
|
|
|
|
+ }
|
|
|
|
|
+ if(!Objects.isNull(this.jyRadio) && !this.jyRadio.equals("") && !this.jyRadio.equals("0")){
|
|
|
|
|
+ this.noRadio = this.jyRadio;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|