Pārlūkot izejas kodu

Merge branch 'wyp/0108-articleVideoAudit' of Server/long-article-recommend into master

wangyunpeng 6 mēneši atpakaļ
vecāks
revīzija
6c0e356d66

+ 0 - 3
long-article-recommend-service/src/main/java/com/tzld/longarticle/recommend/server/service/recommend/ArticleVideoAuditService.java

@@ -53,9 +53,6 @@ public class ArticleVideoAuditService {
 
     public Page<ArticleVideoAuditListVO> list(ArticleVideoAuditListParam param) {
         int offset = (param.getPageNum() - 1) * param.getPageSize();
-        if (CollectionUtils.isEmpty(param.getStatus())) {
-            param.setStatus(Collections.singletonList(ArticleVideoAuditStatusEnum.WAITING.getCode()));
-        }
         int count = articleAuditMapper.articleVideoAuditListCount(param.getContentId(), param.getStatus(),
                 param.getTitle(), param.getAuditAccount());
         List<ArticleVideoAuditListVO> list = articleAuditMapper.articleVideoAuditList(param.getContentId(),