Ver Fonte

档案案卷识别

cr há 2 dias atrás
pai
commit
efb3f4f0d4

+ 3 - 1
blade-service/blade-archive/src/main/java/org/springblade/archive/service/impl/ArchivesAutoServiceImpl.java

@@ -5529,7 +5529,9 @@ public class ArchivesAutoServiceImpl extends BaseServiceImpl<ArchivesAutoMapper,
 		}
 		System.out.println("进入识别9");
 		Type listType = new TypeToken<List<String>>(){}.getType();
-		return gson.fromJson(gson.toJson(resultMap.get("lines")), listType);
+		List< String> result = gson.fromJson(gson.toJson(resultMap.get("lines")), listType);
+		System.out.println(result);
+		return result;
 	}
 
 	@Scheduled(fixedDelay = 1000 * 60 * 10)