|
@@ -93,7 +93,7 @@ public class RuleAttrMappingVo {
|
|
|
ruleAttrMappingVoList.add(new RuleAttrMappingVo("NewAndOldCars", isNoLicenseFlag ? "1" : "0"));
|
|
ruleAttrMappingVoList.add(new RuleAttrMappingVo("NewAndOldCars", isNoLicenseFlag ? "1" : "0"));
|
|
|
|
|
|
|
|
//车龄
|
|
//车龄
|
|
|
- long between = ChronoUnit.YEARS.between(registrationDate, currentDate);
|
|
|
|
|
|
|
+ long between = ChronoUnit.YEARS.between(registrationDate, currentDate) + 1;
|
|
|
ruleAttrMappingVoList.add(new RuleAttrMappingVo("VehicleAge",String.valueOf(between)));
|
|
ruleAttrMappingVoList.add(new RuleAttrMappingVo("VehicleAge",String.valueOf(between)));
|
|
|
|
|
|
|
|
|
|
|