修改密码更换方法

pull/15/head
RuoYi 2018-07-23 17:35:56 +08:00
parent 535f2fafc4
commit 58b4a50fdb
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ public class UserServiceImpl implements IUserService
{ {
user.randomSalt(); user.randomSalt();
user.setPassword(passwordService.encryptPassword(user.getLoginName(), user.getPassword(), user.getSalt())); user.setPassword(passwordService.encryptPassword(user.getLoginName(), user.getPassword(), user.getSalt()));
return updateUser(user); return updateUserInfo(user);
} }
/** /**