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; }