From f2bce066b6b1271f499bbe85d3483b6b3cdb3e8d Mon Sep 17 00:00:00 2001 From: litianxiang Date: Wed, 6 May 2026 10:46:14 +0800 Subject: [PATCH] =?UTF-8?q?seller=E4=BA=A7=E5=93=81=E5=9B=BE=E7=BC=96?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ai/da/service/impl/UserLikeGroupServiceImpl.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java b/src/main/java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java index 3b83ddf7..347baafa 100644 --- a/src/main/java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java +++ b/src/main/java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java @@ -87,11 +87,14 @@ public class UserLikeGroupServiceImpl extends ServiceImpl childCollectionQw = new QueryWrapper<>(); childCollectionQw.lambda().eq(CollectionSort::getParentId, collectionSortId); - childCollectionQw.lambda().eq(CollectionSort::getRelationType, CollectionType.TO_PRODUCT_IMAGE.getValue()); + childCollectionQw.lambda().in(CollectionSort::getRelationType, CollectionType.TO_PRODUCT_IMAGE.getValue(), CollectionType.RELIGHT.getValue()); childCollectionQw.lambda().orderByAsc(CollectionSort::getSort); List childSortList = collectionSortMapper.selectList(childCollectionQw); for (CollectionSort userLikeSort : childSortList) { + if (userLikeSort.getRelationType().equals(CollectionType.POSE_TRANSFORM.getValue())){ + + } ToProductImageResult toProductImageResult = toProductImageResultMapper.selectById(userLikeSort.getRelationId()); if (toProductImageResult != null && !isGenerateTaskFailed(toProductImageResult.getStatus(), toProductImageResult.getCreateTime())) { String url = toProductImageResult.getUrl();