feature #I96A33 为LF增加决策表特性

This commit is contained in:
everywhere.z 2024-04-13 19:27:47 +08:00
parent 4edcc76c5b
commit 200457d4fd
1 changed files with 7 additions and 1 deletions

View File

@ -324,9 +324,15 @@ public class ParserHelper {
}
builder.setEL(bodyJsonNode.textValue());
}else{
JsonNode bodyJsonNode = chainNode.get(BODY);
if (bodyJsonNode != null){
builder.setEL(bodyJsonNode.textValue());
}else{
builder.setEL(chainNode.textValue());
}
builder.setEL(chainNode.get(VALUE).textValue());
}
builder.build();
}