Test.EIImageViewer
he 2023-01-12 10:20:32 +08:00
parent fda332f424
commit e56df5384e
3 changed files with 11 additions and 0 deletions

View File

@ -52,6 +52,8 @@ namespace IRaCIS.Application.Contracts
public string Phone { get; set; } = string.Empty;
public string Introduction { get; set; } = string.Empty;
public string EMail { get; set; } = string.Empty;
public ReviewerInformationConfirmStatus ReviewStatus { get; set; } = ReviewerInformationConfirmStatus.ConfirmRefuse;
public string WeChat { get; set; } = string.Empty;
//部门

View File

@ -7,6 +7,11 @@
public Guid DoctorId { get; set; }
public Guid? PhaseId { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public string EvaluationContent { get; set; } = String.Empty;
public int VisitReadingCount { get; set; }

View File

@ -32,5 +32,9 @@ namespace IRaCIS.Core.Domain.Models
public DateTime UpdateTime { get; set; }
public int VisitReadingCount { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
}
}