admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/service/inter/config/SuperHotSearchService.java
@@ -2,25 +2,41 @@
import java.util.List;
import org.springframework.cache.annotation.Cacheable;
import com.yeshi.fanli.entity.bus.su.search.SuperHotSearch;
import com.yeshi.fanli.entity.system.BusinessSystem;
public interface SuperHotSearchService {
   public List<SuperHotSearch> getSuperHotSearchBySystemId(long id);
   public List<SuperHotSearch> getSuperHotSearchBySystemId(long id, Integer useType);
   
   public List<SuperHotSearch> getSuperHotSearchBySystemIdCache(long id);
   public List<SuperHotSearch> getSuperHotSearchBySystemIdCache(long id, Integer useType);
   public List<SuperHotSearch> getSuperHotSearchsByHotSearchs(List<Long> hsIdList);
   public List<SuperHotSearch> getSuperHotSearchBySystemId(long id, int strat, int count);
   public List<SuperHotSearch> listSuperHotSearch(List<Long> list);
   public List<SuperHotSearch> getSuperHotSearchBySystemId(long id, int strat, int count, String likekey);
   public Integer deleteSuperHotSearch(long hsid, String platform, String packageName);
   /**
    * 查询系统
    * @param id
    * @param systemId
    * @return
    */
   public List<SuperHotSearch> getHotSearchSystem(Long id, Long systemId);
   public void addSuperHotSearch(long hsid, String platform, String packageName);
   /**
    * 删除系统
    * @param id
    * @param systemId
    * @return
    */
   public void deleteSuper(Long id, Long systemId);
   /**
    * 新增系统
    * @param id
    * @param system
    */
   public void addSuper(Long id, BusinessSystem system);
}