oying-system/src/main/java/com/oying/modules/pc/product/rest/ProductController.java | ●●●●● patch | view | raw | blame | history |
oying-system/src/main/java/com/oying/modules/pc/product/rest/ProductController.java
@@ -58,7 +58,7 @@ @GetMapping(value = "/batch") @ApiOperation("查询商品(批量)") // @PreAuthorize("@el.check('product:list')") public ResponseEntity<?> getProductsByIds(@RequestBody List<Long> ids) { public ResponseEntity<?> getProductsByIds(@RequestParam(value = "ids") List<Long> ids) { return ResponseEntity.ok(R.success(productService.listByIds(ids))); }