测试项目 不允许加入正式用户

This commit is contained in:
2023-01-17 17:49:15 +08:00
parent 3f9ffb029b
commit 0fe37fb5c1
3 changed files with 6 additions and 6 deletions
@@ -165,9 +165,9 @@ namespace IRaCIS.Core.Application.Service
if (trialType == TrialType.NoneOfficial)
{
if (existUser.IsTestUser == false && existUser.IsZhiZhun == false)
if (existUser.IsTestUser == false )
{
throw new BusinessValidationFailedException("测试项目 不允许加入外部正式用户 ");
throw new BusinessValidationFailedException("测试项目 不允许加入正式用户 ");
}
}