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
| package com.yeshi.buwan.service.inter.juhe;
|
| import com.yeshi.buwan.domain.video.AlbumVideoMap;
|
| import java.util.List;
|
| public interface AlbumVideoMapService {
|
| /**
| * 拉取所有
| *
| * @param page
| * @param pageSize
| * @return
| */
| public List<AlbumVideoMap> listAll(int page, int pageSize);
|
|
| /**
| * 计算所有
| *
| * @return
| */
| public long countAll();
|
|
| /**
| * 通过视频ID查询
| *
| * @param videoId
| * @return
| */
| public AlbumVideoMap selectByVideoId(String videoId);
|
| }
|
|