|
@@ -8,6 +8,7 @@ import com.lantone.qc.pub.model.entity.General;
|
|
|
import com.lantone.qc.pub.model.entity.GeneralDesc;
|
|
|
import com.lantone.qc.pub.model.label.PresentLabel;
|
|
|
import com.lantone.qc.pub.util.ListUtil;
|
|
|
+import com.lantone.qc.pub.util.StringUtil;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.List;
|
|
@@ -32,11 +33,9 @@ public class BEH0441 extends QCCatalogue {
|
|
|
return;
|
|
|
}
|
|
|
List<String> words = Lists.newArrayList("胃纳", "食纳", "食欲", "未纳", "纳眠", "饮食", "睡眠"
|
|
|
- ,"禁食","未食","鼻饲","食","吃","饮");
|
|
|
- /*
|
|
|
+ , "禁食", "未食", "鼻饲", "饮");
|
|
|
String presentText = presentLabel.getText();
|
|
|
if (StringUtil.isNotBlank(presentText)) {
|
|
|
-
|
|
|
for (String word : words) {
|
|
|
if (presentText.contains(word)) {
|
|
|
status.set("0");
|
|
@@ -44,7 +43,6 @@ public class BEH0441 extends QCCatalogue {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- */
|
|
|
List<GeneralDesc> generals = presentLabel.getGenerals();
|
|
|
List<General> gens = presentLabel.getGens();
|
|
|
|