|
|
@@ -5,7 +5,6 @@ package com.uas.platform.b2c.common.search.rpc.service;
|
|
|
*
|
|
|
* 通过http方式调用远端的搜索接口
|
|
|
*/
|
|
|
-import com.uas.platform.b2c.common.search.constant.SearchParam;
|
|
|
import com.uas.search.exception.SearchException;
|
|
|
import com.uas.platform.b2c.common.search.util.CollectField;
|
|
|
import com.uas.platform.b2c.common.search.util.PageParams;
|
|
|
@@ -24,7 +23,7 @@ public interface SearchService {
|
|
|
|
|
|
SPage<Map<String, Object>> getBrands(String keyword, Integer page, Integer size) throws SearchException;
|
|
|
|
|
|
- Map<String, Object> getComponentIds(String keyword, SearchParam var2) throws SearchException;
|
|
|
+ Map<String, Object> getComponentIds(String keyword, PageParams var2) throws SearchException;
|
|
|
|
|
|
Set<Long> getKindIdsBySearchComponent(String keyword, String brandId) throws SearchException;
|
|
|
|
|
|
@@ -48,7 +47,7 @@ public interface SearchService {
|
|
|
|
|
|
List<Map<String, String>> getSimilarPropertyValues(Long kindId, Long propertyId, String keyword, Long topNum) throws SearchException;
|
|
|
|
|
|
- Map<String, Object> getGoodsIds(String keyword, SearchParam var2) throws SearchException;
|
|
|
+ Map<String, Object> getGoodsIds(String keyword, PageParams var2) throws SearchException;
|
|
|
|
|
|
List<Map<String, Object>> collectBySearchGoods(String keyword, CollectField collectField, Map<PageParams.FilterField, Object> filters);
|
|
|
}
|