修改
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user