yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/controller/admin/brand/MdmBrandController.java
@@ -84,4 +84,12 @@ return success(brandService.getBrandList(null)); } @GetMapping("/list-by-ids") @Operation(summary = "获得品牌列表") @Parameter(name = "ids", description = "编号列表", required = true, example = "1,2,3") @PreAuthorize("@ss.hasPermission('mdm:brand:query')") public CommonResult<List<MdmBrandDO>> getBrandListByIds(@RequestParam("ids") List<Long> ids) { return success(brandService.getBrandList(ids)); } }