VodPlayHistoryMapper.java 1.41 KB
package com.meishu.mapper;

import com.meishu.dto.task.GetUserVodPlayDTO;
import com.meishu.model.VodDictDO;
import com.meishu.model.VodPlayHistoryDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.meishu.vo.PerStudentComplicationVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 视频播放历史记录表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2021-04-27
 */
 @Repository
public interface VodPlayHistoryMapper extends BaseMapper<VodPlayHistoryDO> {

    /**
     * 获取某个学生某个视频看到的最大位点
     * @param studentId
     * @param vodId
     * @return
     */
   int getMaxPlayRecord(Long studentId,Long vodId);


    /**
     * 获取学生完成某课程所有视频中的多少个视频
     * @param studentId
     * @param vodIds
     * @return
     */
   List<Long> getStudyVod(@Param("studentId") Long studentId,@Param("vodIds") List<Long> vodIds);

    /**
     * 获取学生某个课程学习的总时长
     */
    Integer totalLength(Long studentId,List<Long> vodIds);

    /**
     * 获取学生最近一次看视频的时间
     */
    String getMaxPlayTime(Long studentId,Long vodId);

    /**
     * 查看视频的播放量
     */
    Integer queryPlayCounts(Long id);

    List<PerStudentComplicationVO> getCurrentUserVodPlayVO(GetUserVodPlayDTO getUserVodPlayRequestVO);
}