优化用户不能删除自己

This commit is contained in:
RuoYi 2021-08-08 18:58:19 +08:00
parent 6bed8f311a
commit c3e53a3c7a

View File

@ -2,6 +2,7 @@ package com.ruoyi.project.system.controller;
import java.util.List;
import java.util.stream.Collectors;
import org.apache.commons.lang3.ArrayUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.validation.annotation.Validated;
@ -173,6 +174,10 @@ public class SysUserController extends BaseController
@DeleteMapping("/{userIds}")
public AjaxResult remove(@PathVariable Long[] userIds)
{
if (ArrayUtils.contains(userIds, getUserId()))
{
return error("当前用户不能删除");
}
return toAjax(userService.deleteUserByIds(userIds));
}