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.SuperRecommendSection;
 
public interface SuperRecommendSectionService {
 
    public List<SuperRecommendSection> getSuperRecommendSectionBySystemId(
            long id);
 
    public List<SuperRecommendSection> getSuperRecommendSectionsBySections(
            List<Long> rsIdList);
    @CacheEvict(value="supersectionCache",allEntries=true)
    public Integer deleteSuperRecommendSection(long rbid, String platform,
            String packageName);
    @CacheEvict(value="supersectionCache",allEntries=true)
    public void addSuperRecommendSection(long rbid, String platform,
            String packageName);
    @CacheEvict(value="supersectionCache",allEntries=true)
    public void deleteSuperRecommendSections(long[] rsids);
    
    public List<SuperRecommendSection> getSuperRecommendSectionBySystemId(
            long id,int start,int count);
 
    public List<SuperRecommendSection> getSuperRecommendSectionBySystemId(
            long id, int strat, int count, String key);
}