修改验证
continuous-integration/drone/push Build is running Details

Test_IRC_Net10
he 2026-06-18 11:32:48 +08:00
parent af937b3f53
commit 061d212623
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ namespace IRaCIS.Core.Application
return new GetLinkVerificationCodeIsEffectiveOutDto()
{
IsEffective = inDto.LinkVerificationCode == (trial.LinkVerificationCode.IsNotNullOrEmpty() ? trial.ResearchProgramNo : trial.LinkVerificationCode)
IsEffective = inDto.LinkVerificationCode == (trial.LinkVerificationCode.IsNullOrEmpty() ? trial.ResearchProgramNo : trial.LinkVerificationCode)
};
}