diff --git a/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs b/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs index 29e30ac2..e4dde2ab 100644 --- a/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs +++ b/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs @@ -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; //部门 diff --git a/IRaCIS.Core.Application/Service/Doctor/DTO/TrialExperienceModel.cs b/IRaCIS.Core.Application/Service/Doctor/DTO/TrialExperienceModel.cs index 7fa85d98..4ed924c6 100644 --- a/IRaCIS.Core.Application/Service/Doctor/DTO/TrialExperienceModel.cs +++ b/IRaCIS.Core.Application/Service/Doctor/DTO/TrialExperienceModel.cs @@ -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; } diff --git a/IRaCIS.Core.Domain/Dcotor/TrialExperience.cs b/IRaCIS.Core.Domain/Dcotor/TrialExperience.cs index ad91f58d..c3ecb397 100644 --- a/IRaCIS.Core.Domain/Dcotor/TrialExperience.cs +++ b/IRaCIS.Core.Domain/Dcotor/TrialExperience.cs @@ -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; } } }