代码更新

This commit is contained in:
2022-12-25 14:50:47 +08:00
parent f60cbaae6c
commit 18d678d19d
2 changed files with 13 additions and 1 deletions

View File

@@ -32,7 +32,12 @@ public class SecurityUtils {
} catch (Exception e) {
return new CurrentUser();
}
return null;
// 给一个acs
CurrentUser currentUser = new CurrentUser();
currentUser.setId(2L);
currentUser.setUsername("acs");
currentUser.setNickName("ACS系统");
return currentUser;
}
/**