|  | @@ -10,6 +10,7 @@ import com.xunmei.file.vo.ItextPdfTableVo;
 | 
	
		
			
				|  |  |  import com.xunmei.system.api.domain.AccessDataVo;
 | 
	
		
			
				|  |  |  import com.xunmei.system.api.domain.CheckDataVo;
 | 
	
		
			
				|  |  |  import com.xunmei.system.api.domain.SafeCheckTaskRegisterBookVo;
 | 
	
		
			
				|  |  | +import io.netty.util.internal.StringUtil;
 | 
	
		
			
				|  |  |  import lombok.extern.slf4j.Slf4j;
 | 
	
		
			
				|  |  |  import org.apache.commons.io.FileUtils;
 | 
	
		
			
				|  |  |  import org.apache.commons.lang3.StringUtils;
 | 
	
	
		
			
				|  | @@ -554,6 +555,9 @@ public class PdfUtil {
 | 
	
		
			
				|  |  |          PdfUtil.createPDFCell(tableFont, table, "存在问题", Element.ALIGN_CENTER, 6, 1);
 | 
	
		
			
				|  |  |          final Optional<CheckDataVo> optional = data.getCheckDatas().stream().filter(res -> ObjectUtil.isNotEmpty(res.getResRemark())).findAny();
 | 
	
		
			
				|  |  |          if (!optional.isPresent()) {
 | 
	
		
			
				|  |  | +            PdfUtil.createPDFCell(tableFont, table, "1", Element.ALIGN_MIDDLE, 2, 1);
 | 
	
		
			
				|  |  | +            PdfUtil.createPDFCell(tableFont, table, StringUtil.EMPTY_STRING, Element.ALIGN_MIDDLE, 6, 1);
 | 
	
		
			
				|  |  | +            PdfUtil.createPDFCell(tableFont, table, StringUtil.EMPTY_STRING, Element.ALIGN_MIDDLE, 6, 1);
 | 
	
		
			
				|  |  |              document.add(table);
 | 
	
		
			
				|  |  |              return;
 | 
	
		
			
				|  |  |          }
 |