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!;