|
@@ -1,6 +1,5 @@
|
|
|
package com.diagbot.facade;
|
|
|
|
|
|
-import com.diagbot.biz.push.entity.Item;
|
|
|
import com.diagbot.dto.BillDTO;
|
|
|
import com.diagbot.dto.BillNeoDTO;
|
|
|
import com.diagbot.dto.WordCrfDTO;
|
|
@@ -11,7 +10,10 @@ import com.diagbot.vo.StandConvert;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
+import com.diagbot.biz.push.entity.Item;
|
|
|
+
|
|
|
import java.util.List;
|
|
|
+
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
@@ -45,12 +47,14 @@ public class BillFacade {
|
|
|
|
|
|
// 开单合理性图谱接口调用
|
|
|
BillNeoVO billNeoVO = fillBillNeo(indicationPushVO);
|
|
|
- BillNeoDTO billNeoDTO = neoFacade.getBillNeo(billNeoVO);
|
|
|
+
|
|
|
+ List<BillNeoDTO> billNeoDTOs = neoFacade.getBillNeo(billNeoVO);
|
|
|
|
|
|
// neoFacade.getDrugCache();
|
|
|
|
|
|
// 规则开发 TODO
|
|
|
- return billRuleFacade.process(billNeoDTO, wordCrfDTO);
|
|
|
+// return billRuleFacade.process(billNeoDTO, wordCrfDTO);
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
|