|
@@ -136,7 +136,7 @@ public class LoginService {
|
|
}
|
|
}
|
|
SysUserDO entity = command.toEntity();
|
|
SysUserDO entity = command.toEntity();
|
|
entity.setUserId(userId);
|
|
entity.setUserId(userId);
|
|
- entity.setPassword(newPwd);
|
|
|
|
|
|
+ entity.setPassword(command.getNewPassword());
|
|
this.userAuthService.updatePwd(entity);
|
|
this.userAuthService.updatePwd(entity);
|
|
}
|
|
}
|
|
|
|
|