|
@@ -383,7 +383,11 @@ public class RuleAttrMappingVo {
|
|
|
.map(InsAreaCompany::getXyhGrade)
|
|
.map(InsAreaCompany::getXyhGrade)
|
|
|
.map(String::valueOf)
|
|
.map(String::valueOf)
|
|
|
.ifPresent(x -> ruleAttrMappingVoList.add(new RuleAttrMappingVo("XyhGrade", x)));
|
|
.ifPresent(x -> ruleAttrMappingVoList.add(new RuleAttrMappingVo("XyhGrade", x)));
|
|
|
-
|
|
|
|
|
|
|
+ // 红黄蓝车系 阳光
|
|
|
|
|
+ Optional.ofNullable(insAreaCompany)
|
|
|
|
|
+ .map(InsAreaCompany::getSeriesTypeActualName)
|
|
|
|
|
+ .map(String::valueOf)
|
|
|
|
|
+ .ifPresent(x -> ruleAttrMappingVoList.add(new RuleAttrMappingVo("SeriesTypeActualName", x)));
|
|
|
//数值型总评分
|
|
//数值型总评分
|
|
|
Pattern pattern = Pattern.compile("[0-9]*");
|
|
Pattern pattern = Pattern.compile("[0-9]*");
|
|
|
if (insAreaCompany.getScore() != null) {
|
|
if (insAreaCompany.getScore() != null) {
|