|
@@ -36,6 +36,7 @@ public class CrawlerQuoteResponse extends CrawlerBaseResponse {
|
|
|
@JsonProperty(value = "forceCarInsureRisk")
|
|
@JsonProperty(value = "forceCarInsureRisk")
|
|
|
private Double forceCarInsureRisk;
|
|
private Double forceCarInsureRisk;
|
|
|
|
|
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 交强险起保日期
|
|
* 交强险起保日期
|
|
|
*/
|
|
*/
|
|
@@ -90,8 +91,16 @@ public class CrawlerQuoteResponse extends CrawlerBaseResponse {
|
|
|
return crossSellingPremium == null ? 0 : crossSellingPremium;
|
|
return crossSellingPremium == null ? 0 : crossSellingPremium;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setCrossSellingPremium(Double crossSellingPremium) {
|
|
|
|
|
- this.crossSellingPremium = crossSellingPremium;
|
|
|
|
|
|
|
+ public Double getCarInsureShipTax() {
|
|
|
|
|
+ return carInsureShipTax == null ? 0 : carInsureShipTax;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Double getBusinessTotalPremium() {
|
|
|
|
|
+ return businessTotalPremium == null ? 0 : businessTotalPremium;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Double getForceCarInsureRisk() {
|
|
|
|
|
+ return forceCarInsureRisk == null ? 0 : forceCarInsureRisk;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public List<TaxArrearsDto> getTaxArrears() {
|
|
public List<TaxArrearsDto> getTaxArrears() {
|
|
@@ -189,5 +198,4 @@ public class CrawlerQuoteResponse extends CrawlerBaseResponse {
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
}
|
|
}
|