品牌删除

dev798
wxy 2024-03-12 15:08:54 +08:00
parent 02cf2c1bc9
commit 2dbcec771e
1 changed files with 9 additions and 0 deletions

View File

@ -86,6 +86,15 @@ public class BrandInfoController extends BaseController {
/*
*
* */
@RequiresPermissions("product:brand:remove")
@Log(title = "品牌信息",businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
@ApiOperation("删除品牌信息")
@ApiImplicitParam(name = "id", value = "id", required = true, dataType = "Long", paramType = "path", dataTypeClass = String.class, example = "1,2,3,4")
public Result<String>remove(@PathVariable List<Long> ids){
return toAjax(brandInfoService.removeBatchByIds(ids));
}