|
@@ -393,7 +393,7 @@ public class RuleAttrMappingVo {
|
|
|
.map(String::valueOf)
|
|
.map(String::valueOf)
|
|
|
.ifPresent(x -> ruleAttrMappingVoList.add(new RuleAttrMappingVo("SeriesTypeActualName", x)));
|
|
.ifPresent(x -> ruleAttrMappingVoList.add(new RuleAttrMappingVo("SeriesTypeActualName", x)));
|
|
|
//数值型总评分
|
|
//数值型总评分
|
|
|
- Pattern pattern = Pattern.compile("[0-9]*");
|
|
|
|
|
|
|
+ Pattern pattern = Pattern.compile("\\d+(\\.\\d+)?");
|
|
|
if (insAreaCompany.getScore() != null) {
|
|
if (insAreaCompany.getScore() != null) {
|
|
|
if (pattern.matcher(insAreaCompany.getScore()).matches()) {
|
|
if (pattern.matcher(insAreaCompany.getScore()).matches()) {
|
|
|
//数值型评分
|
|
//数值型评分
|