Administrator
2018-10-30 c0c91fbda1ba601c4c8cb6d12fd43dfbe02eea5d
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
package com.yeshi.fanli.service.inter.config;
 
import java.util.List;
 
import org.springframework.cache.annotation.Cacheable;
 
import com.yeshi.fanli.entity.bus.su.search.SuperHotSearch;
 
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);
 
}