ソースを参照

禁忌人群(妊娠)

zhoutg 4 年 前
コミット
d39cbdea6f
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/main/java/com/diagbot/rule/GroupRule.java

+ 2 - 2
src/main/java/com/diagbot/rule/GroupRule.java

@@ -17,7 +17,7 @@ import java.util.List;
 public class GroupRule {
 
     /**
-     * 年龄比较
+     * 禁忌人群
      *
      * @param wordCrfDTO
      * @param billNeoMaxDTO
@@ -26,7 +26,7 @@ public class GroupRule {
     public static void compareGroupWithBill(WordCrfDTO wordCrfDTO, BillNeoMaxDTO billNeoMaxDTO, List<BillMsg> billMsgList, String type) {
         List<NodeNeoDTO> group = billNeoMaxDTO.getGroup();
         for (NodeNeoDTO node : group) {
-            // 妊娠目前从诊断里判断
+            // 妊娠目前从诊断里判断,包含“妊娠”
             if ("妊娠".equals(node.getName())) {
                 List<Item> diag = wordCrfDTO.getDiag();
                 for (Item item : diag) {