TASK:模块化;

This commit is contained in:
shahaibo
2025-04-03 14:14:28 +08:00
parent b1c8606432
commit 7106482831
2 changed files with 3 additions and 3 deletions

View File

@@ -308,8 +308,8 @@ public class DesignServiceImpl extends ServiceImpl<DesignMapper, Design> impleme
Long collectionId;
if (null == collectionIdParam) {
collectionId = collectionService.saveCollection(userInfo.getId(), designDTO.getTimeZone(), designDTO.getMoodTemplateId(), designDTO.getMoodboardPosition());
String moodboardPosition = designDTO.getMoodboardPosition();
parseMoodboardPosition(moodboardPosition, collectionId);
// String moodboardPosition = designDTO.getMoodboardPosition();
// parseMoodboardPosition(moodboardPosition, collectionId);
}else {
collectionId = collectionIdParam;
}

View File

@@ -1391,7 +1391,7 @@ public class UserLikeGroupServiceImpl extends ServiceImpl<UserLikeGroupMapper, U
MoodBoardModuleChooseVO moodBoardModuleChooseVO = new MoodBoardModuleChooseVO();
QueryWrapper<CollectionElement> qw = new QueryWrapper<>();
qw.lambda().eq(CollectionElement::getProjectId, projectDTO.getId());
qw.lambda().ne(CollectionElement::getCollectionId, 0);
// qw.lambda().ne(CollectionElement::getCollectionId, 0);
qw.lambda().eq(CollectionElement::getLevel1Type, CollectionLevel1TypeEnum.MOOD_BOARD.getRealName());
List<CollectionElement> collectionElements = collectionElementMapper.selectList(qw);
Long collectionId = null;