package com.yeshi.fanli.service.inter.config;
|
|
import java.util.List;
|
|
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, Integer useType);
|
|
|
public List<SuperHotSearch> getSuperHotSearchBySystemIdCache(long id, Integer useType);
|
|
|
public List<SuperHotSearch> listSuperHotSearch(List<Long> list);
|
|
|
/**
|
* 查询系统
|
* @param id
|
* @param systemId
|
* @return
|
*/
|
public List<SuperHotSearch> getHotSearchSystem(Long id, Long systemId);
|
|
/**
|
* 删除系统
|
* @param id
|
* @param systemId
|
* @return
|
*/
|
public void deleteSuper(Long id, Long systemId);
|
|
/**
|
* 新增系统
|
* @param id
|
* @param system
|
*/
|
public void addSuper(Long id, BusinessSystem system);
|
|
}
|