Skip to content
Snippets Groups Projects
Commit 2f0f8da6 authored by 黄晋's avatar 黄晋
Browse files

crf去除dot

parent b71271f0
Branches
No related merge requests found
......@@ -30,7 +30,7 @@ public class CrfUtil {
Map<String,Object> crfAswers = new HashMap<>();
crfJsonValueBos.stream().filter(x -> dataIds.contains(x.getKey())).forEach(item -> {
if (Objects.nonNull(item.getName()) && Objects.nonNull(item.getText())) {
crfAswers.put(item.getName() , item.getText());
crfAswers.put(item.getName().replaceAll("\\.", "") , item.getText());
}
});
if (MapUtil.isEmpty(crfAswers)) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment