【fix sonar】LoginServiceImpl文件

This commit is contained in:
梁琦涛
2023-03-09 12:03:54 +08:00
parent f05467d668
commit 9fbaf42ce0
@@ -347,8 +347,8 @@ public class LoginServiceImpl implements ILoginService {
public Result<Map<String, String>> getEncryptedString() {
Result<Map<String,String>> result = new Result<>();
Map<String,String> map = new HashMap<>();
map.put("key", EncryptedString.key);
map.put("iv",EncryptedString.iv);
map.put("key", EncryptedString.ENCRYPTED_KEY);
map.put("iv",EncryptedString.ENCRYPTED_IV);
result.setResult(map);
return result;
}