|
|
|
@ -294,6 +294,11 @@ public class OcrTaskchildPictureServiceImpl extends BaseServiceImpl<OcrTaskchild
|
|
|
|
|
*/
|
|
|
|
|
public OcrTaskchildPicture listPicturePackageId(String fromid, Long packageid) {
|
|
|
|
|
OcrTaskchildPicture ocrTaskchildPicture = this.getById(fromid);
|
|
|
|
|
if (ocrTaskchildPicture == null) {
|
|
|
|
|
return new OcrTaskchildPicture();
|
|
|
|
|
}
|
|
|
|
|
List<Userapprove> list = userapproveService.list(new LambdaQueryWrapper<Userapprove>().eq(Userapprove::getFormid, fromid));
|
|
|
|
|
ocrTaskchildPicture.setUserapproveList(list);
|
|
|
|
|
//查询图片对象
|
|
|
|
|
OcrPicture ocrPicture = this.ocrPictureService.selectDtoById(ocrTaskchildPicture.getPictureid());
|
|
|
|
|
|
|
|
|
|