| | |
| | | @Resource
|
| | | private BusinessSystemService businessSystemService;
|
| | |
|
| | | public List<SuperHotSearch> getSuperHotSearchBySystemId(long id) {
|
| | | return superHotSearchMapper.listBySystemId(id);
|
| | | public List<SuperHotSearch> getSuperHotSearchBySystemId(long id, Integer useType) {
|
| | | return superHotSearchMapper.listBySystemId(id, useType);
|
| | | }
|
| | |
|
| | |
|
| | |
| | |
|
| | |
|
| | | @Override
|
| | | @Cacheable(value = "crgCache", key = "'getSuperHotSearchBySystemIdCache'+#id")
|
| | | public List<SuperHotSearch> getSuperHotSearchBySystemIdCache(long id) {
|
| | | return getSuperHotSearchBySystemId(id);
|
| | | @Cacheable(value = "crgCache", key = "'getSuperHotSearchBySystemIdCache-'+#id+'-'+#useType")
|
| | | public List<SuperHotSearch> getSuperHotSearchBySystemIdCache(long id, Integer useType) {
|
| | | return getSuperHotSearchBySystemId(id, useType);
|
| | | }
|
| | |
|
| | |
|