修改环境配置
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
hang 2024-11-28 10:30:16 +08:00
parent 48380aa7ea
commit a8c9587572
4 changed files with 8 additions and 6 deletions

View File

@ -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"
}
}
}

View File

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

View File

@ -2715,7 +2715,7 @@ namespace IRaCIS.Application.Services
.Select(u => new
{
u.PatientId,
u.PatientIdStr,
u.StudyTime,
u.StudyCode,

View File

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