自动退出逻辑测试

This commit is contained in:
2024-04-16 18:00:51 +08:00
parent 70ababc2d9
commit 0b0df00525
2 changed files with 24 additions and 9 deletions
@@ -18,7 +18,7 @@ namespace IRaCIS.Core.Infrastructure.Extention
BusinessValidationFailed = 2,
//数据不存在
DataNotExist=3,
DataNotExist = 3,
//程序异常 相当于之前的 IsSuccess = false
ProgramException = 4,
@@ -27,10 +27,10 @@ namespace IRaCIS.Core.Infrastructure.Extention
//需要提示 ,需要提示 从Result 取数据 ( 0 可以继续处理提交 ,1 不能进行继续处理提交 ,2 刷新列表 )
NeedTips = 5,
NeedTips = 5,
CloseCurrentWindows=6,
CloseCurrentWindows = 6,
@@ -38,15 +38,17 @@ namespace IRaCIS.Core.Infrastructure.Extention
//在其他地方登陆,被迫下线
LoginInOtherPlace = -1,
AutoLoginOut = -2,
//没有带token访问(未登陆)
NoToken=10,
NoToken = 10,
//带了Token,但是没有相应权限(该用户类型不能做)
HaveTokenNotAccess=11
HaveTokenNotAccess = 11
}
}