|
@@ -7,7 +7,6 @@ import com.diagbot.dto.WordCrfDTO;
|
|
|
import com.diagbot.process.HighRiskProcess;
|
|
|
import com.diagbot.vo.HighRiskNeoVO;
|
|
|
import com.diagbot.vo.IndicationPushVO;
|
|
|
-import com.diagbot.vo.ItemExt;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
@@ -45,13 +44,13 @@ public class HighRiskFacade {
|
|
|
public HighRiskNeoVO fillHighRiskNeo(WordCrfDTO wordCrfDTO) {
|
|
|
HighRiskNeoVO highRiskNeoVO = new HighRiskNeoVO();
|
|
|
|
|
|
- List<ItemExt> itemExts = wordCrfDTO.getDrugOrder();
|
|
|
+ List<Item> items = wordCrfDTO.getDrugOrder();
|
|
|
|
|
|
- for (ItemExt item : itemExts) {
|
|
|
+ for (Item item : items) {
|
|
|
highRiskNeoVO.getDrugList().put(item.getName(), item.getUniqueName());
|
|
|
}
|
|
|
|
|
|
- List<Item> items = wordCrfDTO.getOperationOrder();
|
|
|
+ items = wordCrfDTO.getOperationOrder();
|
|
|
|
|
|
for (Item item : items) {
|
|
|
highRiskNeoVO.getOperationList().put(item.getName(), item.getUniqueName());
|