b9411514
陈杰
first
|
1
2
3
4
|
package com.sincere.student.mapper;
import com.sincere.student.dto.VideoSearchDto;
import com.sincere.student.model.Video;
|
123dbb81
徐泉
研学代码提交
|
5
|
import org.apache.ibatis.annotations.Param;
|
b9411514
陈杰
first
|
6
7
8
9
10
11
12
13
14
|
import java.util.List;
public interface VideoMapper {
int getListCount(VideoSearchDto dto);
List<Video> getList(VideoSearchDto dto);
|
b246a387
陈杰
bug 修复
|
15
16
17
18
|
int getUniversityListCount(VideoSearchDto dto);
List<Video> getUniversityList(VideoSearchDto dto);
|
b9411514
陈杰
first
|
19
20
21
22
23
24
25
|
int create(Video video);
int update(Video video);
int delete(int id);
Video getById(int id);
|
cdb1817b
陈杰
bug 修复
|
26
27
|
int updateRead(int id);
|
123dbb81
徐泉
研学代码提交
|
28
29
|
List<Video> countSort(@Param(value = "sort") int sort, @Param(value = "flag") int flag, @Param(value = "id") Integer id);
|
b9411514
陈杰
first
|
30
|
}
|