修正入参

pull/15/head
张锋 2021-05-14 14:16:21 +08:00 committed by Gitee
parent 304ff3fb46
commit 85da1c2b5b
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ public class AuthServiceImpl implements AuthServiceApi {
public LoginResponse loginWithUserName(String username) {
LoginRequest loginRequest = new LoginRequest();
loginRequest.setAccount(username);
return loginAction(new LoginRequest(), false);
return loginAction(loginRequest, false);
}
@Override