Ver código fonte

输血结构

zhoutg 4 anos atrás
pai
commit
ef13031549

+ 34 - 0
src/main/java/com/diagbot/dto/OtherTipTransfusionNeoDTO.java

@@ -0,0 +1,34 @@
+package com.diagbot.dto;
+
+import com.diagbot.biz.push.entity.Item;
+import com.diagbot.biz.push.entity.Lis;
+import com.diagbot.model.label.PacsLabel;
+import lombok.Data;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * @description: 其他提醒数据——输注
+ * @author: Mark
+ * @time: 2020/7/29 9:57
+ */
+@Data
+public class OtherTipTransfusionNeoDTO {
+
+    // 输血名称
+    private String name;
+
+    // 化验
+    private List<Lis> lisList = new ArrayList<>();
+
+    // 辅检
+    private PacsLabel pacsLabel = new PacsLabel();
+
+    // 手术及操作
+    private List<Item> operation = new ArrayList<>();
+
+    // 诊断
+    private List<Item> diag = new ArrayList<>();
+
+}

+ 4 - 1
src/main/java/com/diagbot/facade/OtherTipFacade.java

@@ -8,7 +8,6 @@ import com.diagbot.vo.IndicationPushVO;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
 
-import java.util.ArrayList;
 import java.util.List;
 
 /**
@@ -62,6 +61,10 @@ public class OtherTipFacade {
         // otherTipNeoDTOList.add(otherTipNeoDTO2);
         // // TODO 测试数据结束
         otherTipProcess.processLis(otherTipNeoDTOList, wordCrfDTO, res);
+
+        // 其他提示——输血
+
+        // 其他提示——辅检
     }
 
 }

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

@@ -55,4 +55,16 @@ public class OtherTipProcess {
             }
         }
     }
+
+
+    /**
+     * 处理业务——输入
+     *
+     * @param otherTipNeoDTOList
+     * @param wordCrfDTO
+     * @param res
+     */
+    public void processTransfusion(List<OtherTipNeoDTO> otherTipNeoDTOList, WordCrfDTO wordCrfDTO, IndicationDTO res) {
+        // TODO
+    }
 }