From 0e952c734b140a755bdca3ab16b0e1f941e8f2ee Mon Sep 17 00:00:00 2001 From: chen <2710907404@qq.com> Date: Tue, 19 Nov 2024 15:44:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=201.=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E5=B9=B6=E8=A1=8C=E6=B5=81=E5=A1=AB=E5=85=85=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entrustment/service/impl/EntrustAlterApplyServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/digital/laboratory/platform/entrustment/service/impl/EntrustAlterApplyServiceImpl.java b/src/main/java/digital/laboratory/platform/entrustment/service/impl/EntrustAlterApplyServiceImpl.java index f440100..addb644 100644 --- a/src/main/java/digital/laboratory/platform/entrustment/service/impl/EntrustAlterApplyServiceImpl.java +++ b/src/main/java/digital/laboratory/platform/entrustment/service/impl/EntrustAlterApplyServiceImpl.java @@ -73,7 +73,7 @@ public class EntrustAlterApplyServiceImpl extends ServiceImpl entrustAlterApplyVOPage = baseMapper.getEntrustAlterApplyVOPage(new Page<>(query.getCurrent(), query.getSize()), query); - entrustAlterApplyVOPage.getRecords().forEach(this::fillVOInfo); + entrustAlterApplyVOPage.getRecords().parallelStream().forEach(this::fillVOInfo); return entrustAlterApplyVOPage; }