品牌删除
parent
02cf2c1bc9
commit
2dbcec771e
|
@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue