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);
|
}
|