|
|
@@ -263,9 +263,9 @@ public class RuleAttrMappingVo {
|
|
|
//商业续保
|
|
|
ruleAttrMappingVoList.add(new RuleAttrMappingVo("SyRenewal", insAreaCompany.getSyRenewal()));
|
|
|
// 交强出险次数
|
|
|
- ruleAttrMappingVoList.add(new RuleAttrMappingVo("JqNumberOfClaims", insAreaCompany.getJqClaims()));
|
|
|
+ ruleAttrMappingVoList.add(new RuleAttrMappingVo("JqNumberOfClaims", insAreaCompany.getJqClaims() == null ? "0" : insAreaCompany.getJqClaims()));
|
|
|
// 商业出险次数
|
|
|
- ruleAttrMappingVoList.add(new RuleAttrMappingVo("SyNumberOfClaims", insAreaCompany.getSyClaims()));
|
|
|
+ ruleAttrMappingVoList.add(new RuleAttrMappingVo("SyNumberOfClaims", insAreaCompany.getSyClaims() == null ? "0" : insAreaCompany.getSyClaims()));
|
|
|
return ruleAttrMappingVoList;
|
|
|
}
|
|
|
}
|