|
@@ -5,6 +5,7 @@ import com.lantone.qc.kernel.structure.ai.model.EntityEnum;
|
|
import com.lantone.qc.kernel.structure.ai.model.Lemma;
|
|
import com.lantone.qc.kernel.structure.ai.model.Lemma;
|
|
import com.lantone.qc.pub.model.entity.BodyPart;
|
|
import com.lantone.qc.pub.model.entity.BodyPart;
|
|
import com.lantone.qc.pub.model.entity.OuterCourtyard;
|
|
import com.lantone.qc.pub.model.entity.OuterCourtyard;
|
|
|
|
+import com.lantone.qc.pub.model.entity.PD;
|
|
import com.lantone.qc.pub.model.entity.Pacs;
|
|
import com.lantone.qc.pub.model.entity.Pacs;
|
|
import com.lantone.qc.pub.model.entity.PacsValue;
|
|
import com.lantone.qc.pub.model.entity.PacsValue;
|
|
|
|
|
|
@@ -33,6 +34,15 @@ public class EntityProcessPacs extends EntityProcess {
|
|
}
|
|
}
|
|
pacses.add(pacs);
|
|
pacses.add(pacs);
|
|
}
|
|
}
|
|
|
|
+ //辅检时间(不是辅检具体项目时间)
|
|
|
|
+ List<Lemma> pdLemmas = createEntityTree(aiOut, EntityEnum.TIME.toString());
|
|
|
|
+ for (Lemma lemma : pdLemmas) {
|
|
|
|
+ PD pd = new PD();
|
|
|
|
+ pd.setName(lemma.getText());
|
|
|
|
+ Pacs pacs = new Pacs();
|
|
|
|
+ pacs.setPd(pd);
|
|
|
|
+ pacses.add(pacs);
|
|
|
|
+ }
|
|
return pacses;
|
|
return pacses;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -80,4 +90,5 @@ public class EntityProcessPacs extends EntityProcess {
|
|
}
|
|
}
|
|
return outerCourtyard;
|
|
return outerCourtyard;
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|