TASK:模块化;
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user