浏览代码

辅检结构调整

zhoutg 4 年之前
父节点
当前提交
4047b6dd93

+ 15 - 0
src/main/java/com/diagbot/dto/OtherTipPacsNeoDTO.java

@@ -0,0 +1,15 @@
+package com.diagbot.dto;
+
+import lombok.Data;
+
+/**
+ * @description: 其他提醒数据——辅检
+ * @author: Mark
+ * @time: 2020/7/29 9:57
+ */
+@Data
+public class OtherTipPacsNeoDTO {
+
+    // 提示语
+    private String msg;
+}

+ 3 - 0
src/main/java/com/diagbot/facade/OtherTipFacade.java

@@ -2,6 +2,7 @@ package com.diagbot.facade;
 
 import com.diagbot.dto.IndicationDTO;
 import com.diagbot.dto.OtherTipNeoDTO;
+import com.diagbot.dto.OtherTipPacsNeoDTO;
 import com.diagbot.dto.OtherTipTransfusionNeoDTO;
 import com.diagbot.dto.WordCrfDTO;
 import com.diagbot.process.OtherTipProcess;
@@ -147,6 +148,8 @@ public class OtherTipFacade {
         otherTipProcess.processTransfusion(otherTipTransfusionNeoDTOList, res);
 
         // 其他提示——辅检
+        List<OtherTipPacsNeoDTO> otherTipPacsNeoDTOList = new ArrayList<>();
+        otherTipProcess.processPacs(otherTipPacsNeoDTOList, res);
     }
 
 }

+ 11 - 0
src/main/java/com/diagbot/process/OtherTipProcess.java

@@ -5,6 +5,7 @@ import com.diagbot.dto.BillMsg;
 import com.diagbot.dto.IndicationDTO;
 import com.diagbot.dto.NodeNeoDTO;
 import com.diagbot.dto.OtherTipNeoDTO;
+import com.diagbot.dto.OtherTipPacsNeoDTO;
 import com.diagbot.dto.OtherTipTransfusionNeoDTO;
 import com.diagbot.dto.WordCrfDTO;
 import com.diagbot.enums.TypeEnum;
@@ -61,6 +62,16 @@ public class OtherTipProcess {
         }
     }
 
+    /**
+     * 处理业务——辅检
+     *
+     * @param otherTipTransfusionNeoDTOList
+     * @param res
+     */
+    public void processPacs(List<OtherTipPacsNeoDTO> otherTipTransfusionNeoDTOList, IndicationDTO res) {
+
+    }
+
     /**
      * 处理业务——输入
      *