From 4a058dc0fff021c84027b84aa8fe2dd642bfed28 Mon Sep 17 00:00:00 2001 From: anthonywj Date: Wed, 11 Jan 2023 09:19:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9D=83=E9=99=90=E7=9B=B8=E5=85=B3bug?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/glxp/api/controller/auth/SysRoleController.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/glxp/api/controller/auth/SysRoleController.java b/src/main/java/com/glxp/api/controller/auth/SysRoleController.java index bbfae2a4..fcfabef9 100644 --- a/src/main/java/com/glxp/api/controller/auth/SysRoleController.java +++ b/src/main/java/com/glxp/api/controller/auth/SysRoleController.java @@ -21,6 +21,7 @@ import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import java.util.Date; import java.util.List; +import java.util.UUID; @Validated @RequiredArgsConstructor @@ -64,7 +65,7 @@ public class SysRoleController extends BaseController { */ @PostMapping public BaseResponse add(@Validated @RequestBody SysRole role) { - + role.setRoleKey(UUID.randomUUID() + ""); if (Constant.NOT_UNIQUE.equals(roleService.checkRoleNameUnique(role))) { return ResultVOUtils.error(500, "新增角色'" + role.getRoleName() + "'失败,角色名称已存在"); } else if (Constant.NOT_UNIQUE.equals(roleService.checkRoleKeyUnique(role))) {