Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
8820338941
|
|
@ -157,6 +157,8 @@ public class AuthorizationServiceImpl implements AuthorizationService {
|
|||
HandoverRecord entity = getHandoverRecord(isStaff, shopInfo, shopStaff);
|
||||
handoverRecordService.initHandoverRecord(entity);
|
||||
}
|
||||
|
||||
redisService.del(RedisCst.LOGIN_CODE + loginDTO.uuid());
|
||||
return new LoginVO(StpKit.USER.getTokenInfo(), promissionList, loginDTO.loginType(), shopInfo);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ public class UserInfoServiceImpl extends ServiceImpl<UserInfoMapper, UserInfo>
|
|||
throw new ApiNotPrintException("验证码错误");
|
||||
}
|
||||
|
||||
userInfo.setPayPwd(SecureUtil.md5(userInfo.getId() + userInfoPwdEditDTO.getPayPwd()));
|
||||
userInfo.setPayPwd(SecureUtil.md5(userInfoPwdEditDTO.getPayPwd()));
|
||||
boolean b = updateById(userInfo);
|
||||
if (b) {
|
||||
redisService.del(key);
|
||||
|
|
|
|||
Loading…
Reference in New Issue