|
|
@@ -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)
|