|
@@ -0,0 +1,28 @@
|
|
|
+package com.diagbot.rule;
|
|
|
+
|
|
|
+import com.diagbot.dto.BillMsg;
|
|
|
+import com.diagbot.dto.BillNeoMaxDTO;
|
|
|
+import com.diagbot.dto.NodeNeoDTO;
|
|
|
+import com.diagbot.dto.WordCrfDTO;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @description: 人群规则
|
|
|
+ * @author: zhoutg
|
|
|
+ * @time: 2020/8/3 14:47
|
|
|
+ */
|
|
|
+public class GroupRule {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 年龄比较
|
|
|
+ *
|
|
|
+ * @param wordCrfDTO
|
|
|
+ * @param billNeoMaxDTO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public static void compareGroupWithBill(WordCrfDTO wordCrfDTO, BillNeoMaxDTO billNeoMaxDTO, List<BillMsg> billMsgList, String type) {
|
|
|
+ NodeNeoDTO ageNeoDTO = billNeoMaxDTO.getAgeNeoDTO();
|
|
|
+ // TODO 妊娠禁忌
|
|
|
+ }
|
|
|
+}
|