国泰新华安全平台-外包
kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
删除密码加密
1 files modified
1 ■■■■ changed files
safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java 1 ●●●● patch | view | raw | blame | history
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);
    }