kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
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);
    }