|
@@ -1,10 +1,10 @@
|
|
|
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 com.lantone.qc.pub.util.StringUtil;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.Map;
|
|
@@ -22,7 +22,7 @@ public class FIRP0214 extends QCCatalogue {
|
|
|
if (inputInfo.getFirstPageRecordDoc() != null && inputInfo.getFirstPageRecordDoc().getStructureMap() != null) {
|
|
|
Map<String, String> firstpageStructureMap = inputInfo.getFirstPageRecordDoc().getStructureMap();
|
|
|
String dischargeTime = firstpageStructureMap.get(Content.work_unit_zipcode);
|
|
|
- if(CatalogueUtil.isEmpty(dischargeTime)){
|
|
|
+ if(StringUtil.isBlank(dischargeTime)){
|
|
|
status.set("-1");
|
|
|
}
|
|
|
|