Authored by mali

根据系列查询系列明细

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