|
|
@@ -396,7 +396,12 @@ public class InsCrawlerOrderServiceImpl implements InsCrawlerOrderService {
|
|
|
Pattern pattern = Pattern.compile(regex);
|
|
|
Matcher matcher = pattern.matcher(item);
|
|
|
if (matcher.find()) {
|
|
|
- insAreaCompany.setTpColorScore(item);
|
|
|
+
|
|
|
+ String tpColorScore = item.replace("小货车鼓励承保业务", "绿区")
|
|
|
+ .replace("小货车一般承保业务", "黄区")
|
|
|
+ .replace("小货车谨慎承保业务", "红区");
|
|
|
+
|
|
|
+ insAreaCompany.setTpColorScore(tpColorScore);
|
|
|
break;
|
|
|
}
|
|
|
}
|