diff --git a/src/main/java/net/geedge/asw/module/app/service/impl/ApplicationServiceImpl.java b/src/main/java/net/geedge/asw/module/app/service/impl/ApplicationServiceImpl.java index 20a010e..5c8e3a9 100644 --- a/src/main/java/net/geedge/asw/module/app/service/impl/ApplicationServiceImpl.java +++ b/src/main/java/net/geedge/asw/module/app/service/impl/ApplicationServiceImpl.java @@ -62,6 +62,7 @@ public class ApplicationServiceImpl extends ServiceImpl attachmentEntityList = attachmentService.list(new LambdaQueryWrapper() .eq(ApplicationAttachmentEntity::getApplicationId, app.getId())); + attachmentEntityList.stream().forEach(x -> x.setPath(null)); app.setAttatchments(attachmentEntityList); SysUserEntity createUser = userService.getById(app.getCreateUserId());