|
@@ -67,7 +67,11 @@ public class ZhcxLoginServiceImpl implements ZhcxLoginService {
|
|
|
}
|
|
|
|
|
|
boolean exist = redisService.hasKey(loginType + account);
|
|
|
- boolean contains = "skip".equals(sysUserDo.getRemark());
|
|
|
+ String remark = sysUserDo.getRemark();
|
|
|
+ boolean contains = false;
|
|
|
+ if(StringUtils.isNotBlank(remark)){
|
|
|
+ contains = "skip".equals(sysUserDo.getRemark());
|
|
|
+ }
|
|
|
if(exist || contains){
|
|
|
Object yzmObj = redisService.getRedisCatchObj(loginType + account);
|
|
|
if(ObjectUtil.isEmpty(yzmObj) && !contains){
|