...
|
...
|
@@ -145,8 +145,8 @@ public class ProductSortController { |
|
|
|
|
|
// 根据分类id集合查询分类的信息
|
|
|
@RequestMapping(value = "/getBaseSortsById")
|
|
|
public ApiResponse<List<ProductSortResponseBo>> getBaseSortsById(List<Integer> ids) {
|
|
|
public List<ProductSortResponseBo> getBaseSortsById(List<Integer> ids) {
|
|
|
LOGGER.info("getBaseSortsById param = {}", ids);
|
|
|
return new ApiResponse<>(productSortService.getBaseSortsById(ids));
|
|
|
return productSortService.getBaseSortsById(ids);
|
|
|
}
|
|
|
} |
...
|
...
|
|