| | |
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.apache.commons.beanutils.PropertyUtils;
|
| | | import org.springframework.cache.annotation.Cacheable;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | import com.yeshi.fanli.dao.mybatis.goods.HotSearchMapper;
|
| | |
| | | return hotSearchMapper.countQuery(key, systemId, useType);
|
| | | }
|
| | |
|
| | | |
| | | @Override
|
| | | @Cacheable(value = "crgCache", key = "'getHotSearchCache-' + #useType")
|
| | | public List<HotSearch> getHotSearchCache(Integer useType) {
|
| | | return hotSearchMapper.getHotSearchList(useType);
|
| | | }
|
| | |
|
| | | |
| | | |
| | | }
|