|
@@ -1,6 +1,7 @@
|
|
package com.tzld.longarticle.recommend.server.mapper.longArticle;
|
|
package com.tzld.longarticle.recommend.server.mapper.longArticle;
|
|
|
|
|
|
import com.tzld.longarticle.recommend.server.model.entity.longArticle.PublishSingleVideoSource;
|
|
import com.tzld.longarticle.recommend.server.model.entity.longArticle.PublishSingleVideoSource;
|
|
|
|
+import com.tzld.longarticle.recommend.server.model.param.ListItemFilterOrderParam;
|
|
import com.tzld.longarticle.recommend.server.model.param.videoAudit.ArticleTitleUpdateParam;
|
|
import com.tzld.longarticle.recommend.server.model.param.videoAudit.ArticleTitleUpdateParam;
|
|
import com.tzld.longarticle.recommend.server.model.param.videoAudit.VideoTitleUpdateParam;
|
|
import com.tzld.longarticle.recommend.server.model.param.videoAudit.VideoTitleUpdateParam;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
@@ -11,11 +12,13 @@ import java.util.List;
|
|
public interface VideoPoolAuditMapper {
|
|
public interface VideoPoolAuditMapper {
|
|
|
|
|
|
int articleVideoAuditListCount(List<String> contentId, List<Integer> status,
|
|
int articleVideoAuditListCount(List<String> contentId, List<Integer> status,
|
|
- List<String> title, List<String> auditAccount, List<Integer> flowPoolLevels);
|
|
|
|
|
|
+ List<String> title, List<String> auditAccount, List<Integer> flowPoolLevels,
|
|
|
|
+ ListItemFilterOrderParam auditTimestamp);
|
|
|
|
|
|
List<PublishSingleVideoSource> articleVideoAuditList(List<String> contentId, List<Integer> status,
|
|
List<PublishSingleVideoSource> articleVideoAuditList(List<String> contentId, List<Integer> status,
|
|
List<String> title, List<String> auditAccount,
|
|
List<String> title, List<String> auditAccount,
|
|
List<Integer> flowPoolLevels,
|
|
List<Integer> flowPoolLevels,
|
|
|
|
+ ListItemFilterOrderParam auditTimestamp,
|
|
int offset, Integer pageSize, String poolLevelDesc);
|
|
int offset, Integer pageSize, String poolLevelDesc);
|
|
|
|
|
|
PublishSingleVideoSource articleVideoAuditNext(List<String> contentId, List<Integer> status,
|
|
PublishSingleVideoSource articleVideoAuditNext(List<String> contentId, List<Integer> status,
|