|
@@ -0,0 +1,24 @@
|
|
|
+package com.lantone.qc.kernel.catalogue.behospitalized;
|
|
|
+
|
|
|
+import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
+import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
|
+import com.lantone.qc.pub.model.InputInfo;
|
|
|
+import com.lantone.qc.pub.model.OutputInfo;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @ClassName : BEH0079
|
|
|
+ * @Description : 专科检查未填写
|
|
|
+ * @Author : 胡敬
|
|
|
+ * @Date: 2020-03-10 15:12
|
|
|
+ */
|
|
|
+@Component
|
|
|
+public class BEH0079 extends QCCatalogue {
|
|
|
+ @Override
|
|
|
+ protected void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
+ if (CatalogueUtil.isEmpty(inputInfo.getBeHospitalizedDoc().getVitalLabelSpecial().getText())) {
|
|
|
+ status = "0";
|
|
|
+ resultDetail.put("status", status);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|