|
@@ -82,13 +82,31 @@ public class PushFacade {
|
|
|
IndicationDTO indicationDTO = new IndicationDTO();
|
|
|
List<BillMsg> billMsgList = Lists.newArrayList();
|
|
|
BillMsg item1 = new BillMsg();
|
|
|
- item1.setMsg("不宜做胃镜");
|
|
|
- item1.setOrderName("胃镜");
|
|
|
- item1.setOrderStandName("胃镜");
|
|
|
- item1.setCompareName("妊娠");
|
|
|
- item1.setCompareStandName("妊娠");
|
|
|
+ item1.setMsg("该患者年龄15,不宜开左氧氟沙星");
|
|
|
+ item1.setOrderName("左氧氟沙星");
|
|
|
+ item1.setOrderStandName("左氧氟沙星");
|
|
|
+ item1.setContent("年龄15");
|
|
|
+ item1.setType("禁忌年龄");
|
|
|
billMsgList.add(item1);
|
|
|
indicationDTO.setBillMsgList(billMsgList);
|
|
|
+ List<BillMsg> criticalValList = Lists.newArrayList();
|
|
|
+ BillMsg item2 = new BillMsg();
|
|
|
+ item2.setMsg("该患者血常规血小板计数30,请留意");
|
|
|
+ item2.setOrderName("");
|
|
|
+ item2.setOrderStandName("");
|
|
|
+ item2.setContent("血常规血小板计数30");
|
|
|
+ item2.setType("血常规血小板计数30");
|
|
|
+ criticalValList.add(item2);
|
|
|
+ indicationDTO.setCriticalValList(criticalValList);
|
|
|
+ List<BillMsg> highRiskList = Lists.newArrayList();
|
|
|
+ BillMsg item3 = new BillMsg();
|
|
|
+ item3.setMsg("盐酸肾上腺素注射液为高风险药品,请留意");
|
|
|
+ item3.setOrderName("盐酸肾上腺素注射液");
|
|
|
+ item3.setOrderStandName("盐酸肾上腺素注射液");
|
|
|
+ item3.setContent("");
|
|
|
+ item3.setType("药品");
|
|
|
+ highRiskList.add(item3);
|
|
|
+ indicationDTO.setHighRiskList(highRiskList);
|
|
|
//RespDTO<IndicationDTO> resp = cdssCoreClient.indication(indicationPushVO);
|
|
|
//RespDTOUtil.respNGDealCover(resp, "远程调用推理接口失败");
|
|
|
//IndicationDTO indicationDTO=resp.data;
|