From 873d4af8dadcc1bb05e5a9c26ca7db5d7070eacd Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 14 Apr 2022 14:14:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A1=B9=E7=9B=AE=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/IRaCIS.Core.Application.xml | 5 +++++ .../Service/TrialSiteUser/DTO/TrialViewModel.cs | 2 +- IRaCIS.Core.Domain/Trial/Trial.cs | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 4f37144d..fa898aa3 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -178,6 +178,11 @@ 访视计划ID + + + 通用ID + + 配置 基础逻辑信息 diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialViewModel.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialViewModel.cs index ec962a8b..91895220 100644 --- a/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialViewModel.cs +++ b/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialViewModel.cs @@ -22,7 +22,7 @@ namespace IRaCIS.Application.Contracts public Guid? SponsorId { get; set; } = Guid.Empty; public Guid? ReviewModeId { get; set; } = Guid.Empty; public string Note { get; set; } = string.Empty; - public string TurnaroundTime { get; set; } = string.Empty; + public string ProjectCycle { get; set; } = string.Empty; public int ExpectedPatients { get; set; } public decimal TimePointsPerPatient { get; set; } public int? GRRReviewers { get; set; } diff --git a/IRaCIS.Core.Domain/Trial/Trial.cs b/IRaCIS.Core.Domain/Trial/Trial.cs index 417fa9a4..383d1864 100644 --- a/IRaCIS.Core.Domain/Trial/Trial.cs +++ b/IRaCIS.Core.Domain/Trial/Trial.cs @@ -89,9 +89,9 @@ namespace IRaCIS.Core.Domain.Models public Guid? SponsorId { get; set; } = Guid.Empty; public Guid? ReviewModeId { get; set; } = Guid.Empty; - + [StringLength(500)] - public string TurnaroundTime { get; set; } = string.Empty; + public string ProjectCycle { get; set; } = string.Empty; public int ExpectedPatients { get; set; }