123456789101112131415161718192021222324252627282930 |
- package com.kmall.admin.service;
- import com.kmall.admin.entity.SearchHistoryEntity;
- import java.util.List;
- import java.util.Map;
- /**
- *
- *
- * @author Scott
- * @email
- * @date 2017-08-13 10:41:10
- */
- public interface SearchHistoryService {
-
- SearchHistoryEntity queryObject(Integer id);
-
- List<SearchHistoryEntity> queryList(Map<String, Object> map);
-
- int queryTotal(Map<String, Object> map);
-
- void save(SearchHistoryEntity searchHistory);
-
- void update(SearchHistoryEntity searchHistory);
-
- void delete(Integer id);
-
- void deleteBatch(Integer[] ids);
- }
|