admin
2021-07-30 19533a17aa55fafc70d0a385928e785cb50e1ebc
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
package com.yeshi.buwan.service.inter.juhe;
 
import com.yeshi.buwan.domain.video.AlbumVideoMap;
 
import javax.annotation.Resource;
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);
 
 
    @Resource
    public void deleteByVideoId(String videoId);
 
}