admin
2021-08-27 8fee151ffae0c3818694b7318583814bf92663e2
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package com.yeshi.buwan.service.inter.juhe;
 
import com.yeshi.buwan.videos.pptv.entity.*;
 
import java.util.List;
 
public interface PPTVService {
 
    /**
     * 添加到视频
     *
     * @param series
     */
    public void addToVideoInfo(PPTVSeries series);
 
 
    /**
     * 剧集下线
     *
     * @param infoId
     */
    public void offLineSeries(String infoId);
 
 
    /**
     * 查询剧集详情
     *
     * @param infoId
     * @return
     */
    public PPTVSeries getSeriesDetail(String infoId);
 
 
    /**
     * 处理PPTV的专辑
     *
     * @param seriesList
     */
    public void save(List<PPTVSeries> seriesList);
 
 
    /**
     * 保存专辑
     *
     * @param series
     */
    public void save(PPTVSeries series);
 
 
    /**
     * 根据视频ID查询专辑详情
     *
     * @param videoId
     * @return
     */
    public PPTVSeries getSeriesDetailByVideoId(String videoId);
 
 
    public VideoPPTVMap getVideoPPTVMapByVideoId(String videoId);
 
 
    /**
     * 根据ID查询节目
     *
     * @param id
     * @return
     */
    public PPTVProgram selectProgramById(String id);
 
    /**
     * 根据code查询映射
     *
     * @param seriesCode
     * @param programCode
     * @return
     */
    public PPTVSeriesProgramMap selectMapByCode(String seriesCode, String programCode);
 
 
    /**
     * 根据infoId查询
     *
     * @param infoId
     * @param programCode
     * @return
     */
    public VideoPPTVMap selectVideoPPTVMapByPPInfo(String infoId, String programCode);
 
 
    public PPTVSeries selectSeriesBySeriesCode(String cid);
 
 
    public PPTVSeries selectSeriesByInfoId(String infoId);
 
    public void updateSeriesGoodsInfo(String infoId, PPTVGoodsInfo goodsInfo);
 
    public void updateProgramGoodsInfo(String vid, PPTVGoodsInfo goodsInfo);
 
    /**
     * 同步专辑
     *
     * @param cid
     */
    public void syncSeries(String cid);
 
}