admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
fanli/src/main/java/com/yeshi/fanli/service/inter/config/SuperHotSearchService.java
@@ -3,24 +3,14 @@
import java.util.List;
import com.yeshi.fanli.entity.bus.su.search.SuperHotSearch;
import com.yeshi.fanli.entity.system.System;
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> getSuperHotSearchsByHotSearchs(List<Long> hsIdList);
   public List<SuperHotSearch> getSuperHotSearchBySystemId(long id, int strat, int count);
   public List<SuperHotSearch> getSuperHotSearchBySystemId(long id, int strat, int count, String likekey);
   public Integer deleteSuperHotSearch(long hsid, String platform, String packageName);
   public void addSuperHotSearch(long hsid, String platform, String packageName);
   public List<SuperHotSearch> getSuperHotSearchBySystemIdCache(long id, Integer useType);
   public List<SuperHotSearch> listSuperHotSearch(List<Long> list);
@@ -40,13 +30,13 @@
    * @param systemId
    * @return
    */
   public Integer deleteSuper(Long id, Long systemId);
   public void deleteSuper(Long id, Long systemId);
   /**
    * 新增系统
    * @param id
    * @param system
    */
   public void addSuper(Long id, System system);
   public void addSuper(Long id, BusinessSystem system);
}