Long类型比较相等问题调整

This commit is contained in:
RuoYi
2020-04-21 19:50:36 +08:00
parent 897ce6e3c2
commit e476fe6f5d
2 changed files with 4 additions and 4 deletions

View File

@ -192,7 +192,7 @@ public class SysUserController extends BaseController
user.setPassword(passwordService.encryptPassword(user.getLoginName(), user.getPassword(), user.getSalt()));
if (userService.resetUserPwd(user) > 0)
{
if (ShiroUtils.getUserId() == user.getUserId())
if (ShiroUtils.getUserId().longValue() == user.getUserId().longValue())
{
ShiroUtils.setSysUser(userService.selectUserById(user.getUserId()));
}