From 7072c8ad2acfc5b9dc78fd23da59ac253b2e0c33 Mon Sep 17 00:00:00 2001 From: shahaibo <1023316923@qq.com> Date: Wed, 29 Nov 2023 15:01:27 +0800 Subject: [PATCH] =?UTF-8?q?TASK:=20=E8=A3=81=E5=89=AA;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/ai/da/service/impl/DesignServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/ai/da/service/impl/DesignServiceImpl.java b/src/main/java/com/ai/da/service/impl/DesignServiceImpl.java index 18ceb4ce..6b20d23a 100644 --- a/src/main/java/com/ai/da/service/impl/DesignServiceImpl.java +++ b/src/main/java/com/ai/da/service/impl/DesignServiceImpl.java @@ -387,8 +387,9 @@ public class DesignServiceImpl extends ServiceImpl impleme .filter(o -> o.getDesignType().equals(DesignTypeEnum.LIBRARY.getRealName())) .collect(Collectors.toList()); for (CollectionSketchDTO collectionSketchDTO : libraryList) { - CollectionSketchVO vo = CopyUtil.copyObject(collectionSketchDTO, CollectionSketchVO.class); Library byId = libraryService.getById(collectionSketchDTO.getSketchBoardId()); + libraryService.processSketchBoards(byId.getUrl(), collectionSketchDTO.getLevel2Type()); + CollectionSketchVO vo = CopyUtil.copyObject(collectionSketchDTO, CollectionSketchVO.class); String url = byId.getUrl(); if (url.contains(".")) { String[] split = url.split("\\.");