wangyunpeng 1 주 전
부모
커밋
42976f1038

+ 2 - 1
api-module/src/main/java/com/tzld/piaoquan/api/service/contentplatform/impl/ContentPlatformCollectContentServiceImpl.java

@@ -203,7 +203,8 @@ public class ContentPlatformCollectContentServiceImpl implements ContentPlatform
     @Override
     public List<ContentPlatformVideoCollect> getCollectVideoList(Long id, List<Long> videoIds) {
         ContentPlatformVideoCollectExample example = new ContentPlatformVideoCollectExample();
-        example.createCriteria().andCreateAccountIdEqualTo(id).andVideoIdIn(videoIds);
+        example.createCriteria().andCreateAccountIdEqualTo(id).andVideoIdIn(videoIds)
+                .andIsDeleteEqualTo(DeletedStatusEnum.NOT_DELETED.getVal());
         return videoCollectMapper.selectByExample(example);
     }