|
@@ -1,31 +1,32 @@
|
|
-package com.lantone.qc.kernel.catalogue.firstpagerecord;
|
|
|
|
-
|
|
|
|
-import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
|
-import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
|
|
-import com.lantone.qc.pub.Content;
|
|
|
|
-import com.lantone.qc.pub.model.InputInfo;
|
|
|
|
-import com.lantone.qc.pub.model.OutputInfo;
|
|
|
|
-import org.springframework.stereotype.Component;
|
|
|
|
-
|
|
|
|
-import java.util.Map;
|
|
|
|
-
|
|
|
|
-/**
|
|
|
|
- * @ClassName : FIRP0209
|
|
|
|
- * @Description : 工作单位及地址没有填写
|
|
|
|
- * @Author : 楼辉荣
|
|
|
|
- * @Date: 2020-03-06 17:28ss
|
|
|
|
- */
|
|
|
|
-@Component
|
|
|
|
-public class FIRP0209 extends QCCatalogue {
|
|
|
|
- public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
|
- status.set("0");
|
|
|
|
- if (inputInfo.getFirstPageRecordDoc() != null && inputInfo.getFirstPageRecordDoc().getStructureMap() != null) {
|
|
|
|
- Map<String, String> firstpageStructureMap = inputInfo.getFirstPageRecordDoc().getStructureMap();
|
|
|
|
- String dischargeTime = firstpageStructureMap.get(Content.work_unit);
|
|
|
|
- if(CatalogueUtil.isEmpty(dischargeTime)){
|
|
|
|
- status.set("-1");
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+package com.lantone.qc.kernel.catalogue.firstpagerecord;
|
|
|
|
+
|
|
|
|
+import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
|
+import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
|
|
+import com.lantone.qc.pub.Content;
|
|
|
|
+import com.lantone.qc.pub.model.InputInfo;
|
|
|
|
+import com.lantone.qc.pub.model.OutputInfo;
|
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
|
+
|
|
|
|
+import java.util.Map;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * @ClassName : FIRP0209
|
|
|
|
+ * @Description : 工作单位及地址没有填写
|
|
|
|
+ * @Author : 楼辉荣
|
|
|
|
+ * @Date: 2020-03-06 17:28ss
|
|
|
|
+ */
|
|
|
|
+@Component
|
|
|
|
+public class FIRP0209 extends QCCatalogue {
|
|
|
|
+ public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
|
+ status.set("0");
|
|
|
|
+ if (inputInfo.getFirstPageRecordDoc() != null && inputInfo.getFirstPageRecordDoc().getStructureMap() != null) {
|
|
|
|
+ Map<String, String> firstpageStructureMap = inputInfo.getFirstPageRecordDoc().getStructureMap();
|
|
|
|
+ String dischargeTime = firstpageStructureMap.get(Content.work_unit);
|
|
|
|
+ if(StringUtils.isBlank(dischargeTime)){
|
|
|
|
+ status.set("-1");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|