去掉siteId
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-05-22 13:45:28 +08:00
parent 010c106879
commit 53aee1020d
2 changed files with 10 additions and 5 deletions

View File

@ -10,6 +10,9 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO
public class SubjectImageUploadDTO
{
public Guid VisitTaskId { get; set; }
//public Guid SiteId { get; set; }
public Guid SubejctId { get; set; }
public string SubjectCode { get; set; }
@ -30,14 +33,14 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO
public class StudyBasicInfo
{
public Guid Id { get; set; }
public string StudyInstanceUid { get; set; }
public string StudyInstanceUid { get; set; }
public string StudyCode { get; set; }
public string ModalityForEdit { get; set; }
public string BodyPartExamined { get; set; }
public string BodyPartForEdit { get; set; }
@ -45,9 +48,9 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO
public string Modalities { get; set; }
public string Description { get; set; }
public int SeriesCount { get; set; }
public int InstanceCount { get; set; }
public string Description { get; set; }
public int SeriesCount { get; set; }
public int InstanceCount { get; set; }
public List<string> SopInstanceUidList { get; set; }
}

View File

@ -58,6 +58,8 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
{
VisitTaskId = u.Id,
SubejctId = u.SubjectId,
SubjectCode = u.IsSelfAnalysis == true ? u.Subject.Code : u.BlindSubjectCode,
TaskBlindName = u.TaskBlindName,
TaskName = u.TaskName,