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