|
|
@@ -419,6 +419,9 @@ public class JzgAuthenticationProvider implements AuthenticationProvider {
|
|
|
.filter(x -> Objects.equals(x.getSystemCode(), system))
|
|
|
.findFirst()
|
|
|
.orElse(null);
|
|
|
+ if(sysUserJzgInfo == null){
|
|
|
+ throw new SystemException("该用户信息不存在,请重新输入");
|
|
|
+ }
|
|
|
// 租户系统才会校验这个, 后台管理系统,没有租户的概念
|
|
|
if(this.isTenantLogin(system)){
|
|
|
if (sysUserJzgInfo.cannotLogin()) {
|