From d015cc0b48ca51a2b93b6c60c91dc352a104b1e7 Mon Sep 17 00:00:00 2001
From: kongzy <kongzy>
Date: 星期一, 23 九月 2024 10:41:50 +0800
Subject: [PATCH] 删除密码加密

---
 safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java
index caf8ad2..4cfdb23 100644
--- a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java
+++ b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java
@@ -29,7 +29,6 @@
     public ResultVO<UserLoginRPCRespDTO> authLogin(@RequestBody JSONObject loginForm){
         String username = loginForm.getString("username");
         String password = loginForm.getString("password");
-        password= Base64.decodeStr(password);
         return accountAuthService.authLogin(username, password);
     }
 

--
Gitblit v1.9.2