From e56df5384e0d368523d50aefa960b278bae28b7e Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Thu, 12 Jan 2023 10:20:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs | 2 ++ .../Service/Doctor/DTO/TrialExperienceModel.cs | 5 +++++ IRaCIS.Core.Domain/Dcotor/TrialExperience.cs | 4 ++++ 3 files changed, 11 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs b/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs index 29e30ac2c..e4dde2ab6 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 7fa85d98b..4ed924c61 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 ad91f58d2..c3ecb3979 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; } } }