!15 修正入参

Merge pull request !15 from 张锋/N/A
pull/15/MERGE
stylefeng 2021-05-17 20:25:55 +08:00 committed by Gitee
commit eb7bb2522f
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