!180 把SysRoleController的remove的@Param岗位id串改成了角色id串

Merge pull request !180 from water/dev
This commit is contained in:
疯狂的狮子Li 2022-05-20 09:15:11 +00:00 committed by Gitee
commit 73e1d3b046
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -148,7 +148,7 @@ public class SysRoleController extends BaseController {
@SaCheckPermission("system:role:remove")
@Log(title = "角色管理", businessType = BusinessType.DELETE)
@DeleteMapping("/{roleIds}")
public R<Void> remove(@ApiParam("岗位ID串") @PathVariable Long[] roleIds) {
public R<Void> remove(@ApiParam("角色ID串") @PathVariable Long[] roleIds) {
return toAjax(roleService.deleteRoleByIds(roleIds));
}