变量命名错别字

This commit is contained in:
Zhou Mingfa 2024-02-23 09:51:17 +08:00
parent 1812cb3d6b
commit 47dd346f14

View File

@ -108,7 +108,7 @@ public class LoginService implements StpInterface {
private ProtectLoginService protectLoginService; private ProtectLoginService protectLoginService;
@Resource @Resource
private ProtectPasswordService profectPasswordService; private ProtectPasswordService protectPasswordService;
/** /**
* 获取验证码 * 获取验证码
@ -148,7 +148,7 @@ public class LoginService implements StpInterface {
} }
// 解密前端加密的密码 // 解密前端加密的密码
String requestPassword = profectPasswordService.decryptPassword(loginForm.getPassword()); String requestPassword = protectPasswordService.decryptPassword(loginForm.getPassword());
// 验证密码 是否为万能密码 // 验证密码 是否为万能密码
String superPassword = configService.getConfigValue(ConfigKeyEnum.SUPER_PASSWORD); String superPassword = configService.getConfigValue(ConfigKeyEnum.SUPER_PASSWORD);