|
@@ -130,6 +130,7 @@ public class SearchProductServiceImpl implements SearchProductService {
|
|
|
|
|
|
@Override
|
|
|
public ResponseJson<Set<HashMap<String, Object>>> queryBrand(String keyword, Integer id, Integer idType, Integer newFlag, Integer promotionFlag, Integer identity) {
|
|
|
+ log.info("查询品牌传入keyword----------->"+keyword+"-------------》id"+id+"------------->idType"+idType+"newFlag----------------->"+newFlag+"------------>promotionFlag------------->"+promotionFlag+"identity------------>"+identity);
|
|
|
String queryStr = "";
|
|
|
String filter = "";
|
|
|
if (!StringUtils.isEmpty(keyword) && idType == null && id == null) {
|
|
@@ -170,7 +171,9 @@ public class SearchProductServiceImpl implements SearchProductService {
|
|
|
}
|
|
|
}
|
|
|
SearchParams searchParams = searchOpenService.getParams(queryStr, identity, filter);
|
|
|
+ log.info("查询品牌发送参数---------------------------------------------------》"+searchParams.toString());
|
|
|
ResponseJson<Set<HashMap<String, Object>>> result = getBrandResult(searchParams, queryStr);
|
|
|
+ log.info("查询品牌返回参数---------------------------------------------------》"+result.toString());
|
|
|
return result;
|
|
|
}
|
|
|
|