|
|
|
@ -41,8 +41,10 @@ public class OcrTaskchildDubiousFileServiceImpl extends ServiceImpl<OcrTaskchild
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private OcrTaskchildPictureService ocrTaskchildPictureService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分页查询可疑文件夹下的图片信息,并返回对应的状态,相似度,时间值等
|
|
|
|
|
*
|
|
|
|
|
* @param pageNo
|
|
|
|
|
* @param pageSize
|
|
|
|
|
* @param orderbyname
|
|
|
|
@ -82,6 +84,7 @@ public class OcrTaskchildDubiousFileServiceImpl extends ServiceImpl<OcrTaskchild
|
|
|
|
|
List<OcrTaskChildPictureVo> records = taskChildPictures.stream().skip((pageNo - 1) * pageSize).limit(pageSize).collect(Collectors.toList());
|
|
|
|
|
objectPage.setRecords(records);
|
|
|
|
|
objectPage.setTotal(taskChildPictures.size());
|
|
|
|
|
}
|
|
|
|
|
return objectPage;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|