Test.EIImageViewer
parent
0f60809c32
commit
2a334a714f
|
@ -205,6 +205,8 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
{
|
||||
public Guid? DoctorId { get; set; }
|
||||
|
||||
public ReviewerInformationConfirmStatus? ReviewStatus { get; set; }
|
||||
|
||||
public string Token { get; set; }
|
||||
}
|
||||
|
||||
|
|
|
@ -88,6 +88,8 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
var doctorInfo = await _doctorRepository.Where(x => x.EMail == inDto.EmailOrPhone).FirstOrDefaultAsync();
|
||||
|
||||
result.DoctorId = doctorInfo == null ? null : doctorInfo.Id;
|
||||
result.ReviewStatus = doctorInfo == null ? null : doctorInfo.ReviewStatus;
|
||||
|
||||
//检查数据库是否存在该验证码
|
||||
if (verificationRecord == null)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue