From a8c9587572e6b025ab3a1839f3c8904b3f05e033 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 28 Nov 2024 10:30:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=8E=AF=E5=A2=83=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.API/Properties/launchSettings.json | 8 ++++---- .../Service/QC/DTO/QARecordViewModel.cs | 2 ++ IRaCIS.Core.Application/Service/Visit/PatientService.cs | 2 +- IRaCIS.Core.Domain/Image/DicomStudy.cs | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/IRaCIS.Core.API/Properties/launchSettings.json b/IRaCIS.Core.API/Properties/launchSettings.json index 39b9a3a33..256911ee2 100644 --- a/IRaCIS.Core.API/Properties/launchSettings.json +++ b/IRaCIS.Core.API/Properties/launchSettings.json @@ -16,15 +16,15 @@ "ASPNETCORE_ENVIRONMENT": "Test_IRC" } }, - "IRaCIS.Test_IRC": { + "Uat_HIR": { "commandName": "Project", "launchBrowser": true, "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Test_IRC" + "ASPNETCORE_ENVIRONMENT": "Uat_HIR" }, "applicationUrl": "http://localhost:6100" }, - "IRaCIS.HIR_IRC": { + "Test_HIR": { "commandName": "Project", "launchBrowser": true, "environmentVariables": { @@ -32,7 +32,7 @@ }, "applicationUrl": "http://localhost:6100" } - + } } \ No newline at end of file diff --git a/IRaCIS.Core.Application/Service/QC/DTO/QARecordViewModel.cs b/IRaCIS.Core.Application/Service/QC/DTO/QARecordViewModel.cs index 7622ef5ea..c4c95103d 100644 --- a/IRaCIS.Core.Application/Service/QC/DTO/QARecordViewModel.cs +++ b/IRaCIS.Core.Application/Service/QC/DTO/QARecordViewModel.cs @@ -356,6 +356,8 @@ namespace IRaCIS.Core.Application.Contracts.DTO } public class QAStudyInfoDTO { + public string PatientIdStr { get; set; } + public string PatientName { get; set; } public bool IsDeleted { get; set; } public string StudyInstanceUid { get; set; } = string.Empty; diff --git a/IRaCIS.Core.Application/Service/Visit/PatientService.cs b/IRaCIS.Core.Application/Service/Visit/PatientService.cs index 23fd68c18..52c446af5 100644 --- a/IRaCIS.Core.Application/Service/Visit/PatientService.cs +++ b/IRaCIS.Core.Application/Service/Visit/PatientService.cs @@ -2715,7 +2715,7 @@ namespace IRaCIS.Application.Services .Select(u => new { - u.PatientId, + u.PatientIdStr, u.StudyTime, u.StudyCode, diff --git a/IRaCIS.Core.Domain/Image/DicomStudy.cs b/IRaCIS.Core.Domain/Image/DicomStudy.cs index 331c12351..7dbad4b55 100644 --- a/IRaCIS.Core.Domain/Image/DicomStudy.cs +++ b/IRaCIS.Core.Domain/Image/DicomStudy.cs @@ -58,7 +58,7 @@ public class DicomStudy : BaseFullDeleteAuditEntity, IEntitySeqId public string PatientAge { get; set; } = null!; public string PatientBirthDate { get; set; } = null!; - + [Comment("废弃了,用PatientIdStr")] public string PatientId { get; set; } = null!; public string PatientName { get; set; } = null!;