| | |
| | | HotSearch updateSearch = new HotSearch(hotSearch.getId());
|
| | | updateSearch.setName(hotSearch.getName());
|
| | | updateSearch.setOrderby(hotSearch.getOrderby());
|
| | | updateSearch.setUseType(hotSearch.getUseType());
|
| | | hotSearchMapper.updateByPrimaryKeySelective(updateSearch);
|
| | | }
|
| | |
|
| | |
|
| | |
|
| | | @Override
|
| | | public List<HotSearch> listQuery(int start, int count, String key, Long systemId) throws Exception {
|
| | | public List<HotSearch> listQuery(int start, int count, String key, Long systemId, Integer useType) throws Exception {
|
| | |
|
| | | List<HotSearch> listObj = hotSearchMapper.listQuery(start, count, key, systemId);
|
| | | List<HotSearch> listObj = hotSearchMapper.listQuery(start, count, key, systemId, useType);
|
| | |
|
| | | if (listObj == null || listObj.size() == 0) {
|
| | | return null;
|
| | |
| | | }
|
| | |
|
| | | @Override
|
| | | public int countList(String key, Long systemId) {
|
| | | return hotSearchMapper.countQuery(key, systemId);
|
| | | public int countList(String key, Long systemId, Integer useType) {
|
| | | return hotSearchMapper.countQuery(key, systemId, useType);
|
| | | }
|
| | |
|
| | | }
|