去掉siteId
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
010c106879
commit
53aee1020d
|
@ -10,6 +10,9 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO
|
||||||
public class SubjectImageUploadDTO
|
public class SubjectImageUploadDTO
|
||||||
{
|
{
|
||||||
public Guid VisitTaskId { get; set; }
|
public Guid VisitTaskId { get; set; }
|
||||||
|
|
||||||
|
//public Guid SiteId { get; set; }
|
||||||
|
|
||||||
public Guid SubejctId { get; set; }
|
public Guid SubejctId { get; set; }
|
||||||
|
|
||||||
public string SubjectCode { get; set; }
|
public string SubjectCode { get; set; }
|
||||||
|
@ -30,14 +33,14 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO
|
||||||
public class StudyBasicInfo
|
public class StudyBasicInfo
|
||||||
{
|
{
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
public string StudyInstanceUid { get; set; }
|
public string StudyInstanceUid { get; set; }
|
||||||
|
|
||||||
public string StudyCode { get; set; }
|
public string StudyCode { get; set; }
|
||||||
|
|
||||||
public string ModalityForEdit { get; set; }
|
public string ModalityForEdit { get; set; }
|
||||||
|
|
||||||
public string BodyPartExamined { get; set; }
|
public string BodyPartExamined { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public string BodyPartForEdit { 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 Modalities { get; set; }
|
||||||
|
|
||||||
public string Description { get; set; }
|
public string Description { get; set; }
|
||||||
public int SeriesCount { get; set; }
|
public int SeriesCount { get; set; }
|
||||||
public int InstanceCount { get; set; }
|
public int InstanceCount { get; set; }
|
||||||
|
|
||||||
public List<string> SopInstanceUidList { get; set; }
|
public List<string> SopInstanceUidList { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,6 +58,8 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||||
{
|
{
|
||||||
VisitTaskId = u.Id,
|
VisitTaskId = u.Id,
|
||||||
SubejctId = u.SubjectId,
|
SubejctId = u.SubjectId,
|
||||||
|
|
||||||
|
|
||||||
SubjectCode = u.IsSelfAnalysis == true ? u.Subject.Code : u.BlindSubjectCode,
|
SubjectCode = u.IsSelfAnalysis == true ? u.Subject.Code : u.BlindSubjectCode,
|
||||||
TaskBlindName = u.TaskBlindName,
|
TaskBlindName = u.TaskBlindName,
|
||||||
TaskName = u.TaskName,
|
TaskName = u.TaskName,
|
||||||
|
|
Loading…
Reference in New Issue