yujian
2019-03-14 4aadf484e193995c23ee1d5bb1971a497d2f9a0d
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
package com.yeshi.fanli.service.inter.config;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.su.search.SuperHotSearch;
import com.yeshi.fanli.entity.system.BusinessSystem;
 
public interface SuperHotSearchService {
 
    public List<SuperHotSearch> getSuperHotSearchBySystemId(long id);
 
    
    public List<SuperHotSearch> getSuperHotSearchBySystemIdCache(long id);
 
    public List<SuperHotSearch> getSuperHotSearchsByHotSearchs(List<Long> hsIdList);
 
    public List<SuperHotSearch> getSuperHotSearchBySystemId(long id, int strat, int count);
 
    public List<SuperHotSearch> getSuperHotSearchBySystemId(long id, int strat, int count, String likekey);
 
    public Integer deleteSuperHotSearch(long hsid, String platform, String packageName);
 
    public void addSuperHotSearch(long hsid, String platform, String packageName);
 
 
    public List<SuperHotSearch> listSuperHotSearch(List<Long> list);
 
 
    /**
     * 查询系统
     * @param id
     * @param systemId
     * @return
     */
    public List<SuperHotSearch> getHotSearchSystem(Long id, Long systemId);
 
    /**
     * 删除系统
     * @param id
     * @param systemId
     * @return
     */
    public Integer deleteSuper(Long id, Long systemId);
 
    /**
     * 新增系统
     * @param id
     * @param system
     */
    public void addSuper(Long id, BusinessSystem system);
 
}