VodPlayHistoryMapper.java
1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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);
}