|
@@ -193,7 +193,9 @@ public class BeHospitalizedAI {
|
|
|
JSONObject aiOut = jsonObject.getJSONObject(entityRelationObject).getJSONObject(BeHospitalizedAI.outputs);
|
|
|
//放置入inputinfo
|
|
|
EntityProcessPast entityProcessPast = new EntityProcessPast();
|
|
|
- inputInfo.getBeHospitalizedDoc().setPastLabel(entityProcessPast.extractEntity(aiOut));
|
|
|
+ PastLabel pastLabel = entityProcessPast.extractEntity(aiOut);
|
|
|
+ pastLabel.setText(inputInfo.getBeHospitalizedDoc().getPastLabel().getText());
|
|
|
+ inputInfo.getBeHospitalizedDoc().setPastLabel(pastLabel);
|
|
|
|
|
|
}
|
|
|
|