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
27
28
29
30
31
package com.yeshi.fanli.service.inter.goods;
 
import java.util.List;
 
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.Cacheable;
 
import com.yeshi.fanli.entity.bus.su.recommend.SuperRecommendSpecial;
 
public interface SuperRecommendSpecialService {
    
    public List<SuperRecommendSpecial> getSuperRecommendSpecialBySystemId(long id);
 
    public List<SuperRecommendSpecial> getSuperRecommendSpecials(
            List<Long> rsIdList);
    @CacheEvict(value="specialCache",allEntries=true)
    public Integer deleteSuperRecommendSpecial(long rbid, String platform,
            String packageName);
    @CacheEvict(value="specialCache",allEntries=true)
    public void addSuperRecommendSpecial(long rbid, String platform,
            String packageName);
    @CacheEvict(value="specialCache",allEntries=true)
    public void deleteSuperRecommendSpecials(long[] rbids);  
 
    public List<SuperRecommendSpecial> getSuperRecommendSpecialBySystemId(
            long id, int strat, int count);
 
    public List<SuperRecommendSpecial> getSuperRecommendSpecialBySystemId(
            long id, int strat, int pAGE_SIZE, String likekey);
 
}