...
|
...
|
@@ -29,6 +29,7 @@ public class ProductServiceCaller { |
|
|
* @return
|
|
|
*/
|
|
|
public List<String> getFullCategoryIdsBySubIds(List<Integer> subIds) {
|
|
|
logger.info("getFullCategoryIdsBySubIds params:{}",subIds);
|
|
|
BatchRequest batchRequest = new BatchRequest();
|
|
|
batchRequest.setParams(subIds);
|
|
|
ProductSortResponseBo[] bos = serviceCaller.call("ufoPlatform.getBaseSortsById", batchRequest, ProductSortResponseBo[].class);
|
...
|
...
|
@@ -46,6 +47,7 @@ public class ProductServiceCaller { |
|
|
* @return
|
|
|
*/
|
|
|
public List<String> getFullSeriesIdsBySubIds(List<Integer> subIds) {
|
|
|
logger.info("getFullSeriesIdsBySubIds params:{}",subIds);
|
|
|
BatchRequest batchRequest = new BatchRequest();
|
|
|
batchRequest.setParams(subIds);
|
|
|
BrandSeriesResponseBo[] bos = serviceCaller.call("ufoPlatform.getBrandSeriesByIds", batchRequest, BrandSeriesResponseBo[].class);
|
...
|
...
|
|