Uat_Study
he 2023-01-11 17:43:19 +08:00
parent 0f60809c32
commit 2a334a714f
2 changed files with 4 additions and 0 deletions

View File

@ -205,6 +205,8 @@ namespace IRaCIS.Core.Application.Contracts
{ {
public Guid? DoctorId { get; set; } public Guid? DoctorId { get; set; }
public ReviewerInformationConfirmStatus? ReviewStatus { get; set; }
public string Token { get; set; } public string Token { get; set; }
} }

View File

@ -88,6 +88,8 @@ namespace IRaCIS.Core.Application.Contracts
var doctorInfo = await _doctorRepository.Where(x => x.EMail == inDto.EmailOrPhone).FirstOrDefaultAsync(); var doctorInfo = await _doctorRepository.Where(x => x.EMail == inDto.EmailOrPhone).FirstOrDefaultAsync();
result.DoctorId = doctorInfo == null ? null : doctorInfo.Id; result.DoctorId = doctorInfo == null ? null : doctorInfo.Id;
result.ReviewStatus = doctorInfo == null ? null : doctorInfo.ReviewStatus;
//检查数据库是否存在该验证码 //检查数据库是否存在该验证码
if (verificationRecord == null) if (verificationRecord == null)
{ {