|
|
@@ -734,13 +734,17 @@ public class InsCrawlerOrderServiceImpl implements InsCrawlerOrderService {
|
|
|
// 赔付率
|
|
|
if(Objects.nonNull(response.getOther().getLossRation())) {
|
|
|
quoteRespVo.setLossRation(Double.parseDouble(response.getOther().getLossRation()));
|
|
|
+ insAreaCompany.setLossRation(Double.parseDouble(response.getOther().getLossRation()));
|
|
|
}
|
|
|
// 交强赔付率
|
|
|
if(Objects.nonNull(response.getOther().getJqLossRation())) {
|
|
|
quoteRespVo.setJqLossRation(Double.parseDouble(response.getOther().getJqLossRation()));
|
|
|
+ insAreaCompany.setJqLossRation(Double.parseDouble(response.getOther().getJqLossRation()));
|
|
|
}
|
|
|
+ // 商业赔付率
|
|
|
if(Objects.nonNull(response.getOther().getSyLossRation())) {
|
|
|
quoteRespVo.setSyLossRation(Double.parseDouble(response.getOther().getSyLossRation()));
|
|
|
+ insAreaCompany.setSyLossRation(Double.parseDouble(response.getOther().getSyLossRation()));
|
|
|
}
|
|
|
|
|
|
|