TASK:模块化;

This commit is contained in:
shahaibo
2025-04-03 14:27:03 +08:00
parent 64676736b5
commit 5d9ca09272

View File

@@ -1419,7 +1419,7 @@ public class UserLikeGroupServiceImpl extends ServiceImpl<UserLikeGroupMapper, U
}
List<CollectionElementVO> list = new ArrayList<>();
for (CollectionElement collectionElement : collectionElements) {
if (collectionElement.getId() == Long.valueOf(collection.getMoodTemplateId())) {
if (Objects.equals(collectionElement.getId(), Long.valueOf(collection.getMoodTemplateId()))) {
continue;
}
CollectionElementVO collectionElementVO = CopyUtil.copyObject(collectionElement, CollectionElementVO.class);