admin
2021-04-30 cd4a4617fd33b0e25185ab2012a536821420fd80
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
package com.yeshi.buwan.service.inter.live;
 
import com.yeshi.buwan.domain.live.SuperTVLiveCategory;
import com.yeshi.buwan.domain.live.TVLiveCategory;
import com.yeshi.buwan.exception.live.TVLiveCategoryException;
 
import java.util.List;
 
/**
 * 直播分类服务
 */
public interface TVLiveCategoryService {
 
 
    public void addCategory(TVLiveCategory category, List<String> detailSystemList) throws TVLiveCategoryException;
 
    public void deleteCateogry(List<String> ids);
 
    public void updateCategory(TVLiveCategory category);
 
 
    /**
     * 列表查询
     *
     * @param detailSystemId
     * @param nameKey
     * @param page
     * @param pageSize
     * @return
     */
    public List<TVLiveCategory> list(String detailSystemId, String nameKey, int page, int pageSize);
 
    public long count(String detailSystemId, String nameKey);
 
 
    //系统分类映射
 
    /**
     * @param superCategory
     */
 
    public void addSuperCategory(SuperTVLiveCategory superCategory);
 
    public void updateSuperCategory(SuperTVLiveCategory superCategory);
 
    public void deleteSuperCategory(String id);
 
    public void deleteSuperCategory(String categoryId, String detailSystemId);
 
}