51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
namespace IRaCIS.Core.Application.Contracts.Dicom.DTO
|
|
{
|
|
public class DicomSeriesDTO
|
|
{
|
|
|
|
public bool IsDicom { get; set; } = true;
|
|
|
|
public bool IsBeMark { get; set; } = false;
|
|
|
|
public Guid Id { get; set; }
|
|
public Guid StudyId { get; set; }
|
|
public string StudyInstanceUid { get; set; } = String.Empty;
|
|
public string SeriesInstanceUid { get; set; } = String.Empty;
|
|
public string SeriesNumber { get; set; }
|
|
public DateTime? SeriesTime { get; set; }
|
|
public string Modality { get; set; } = String.Empty;
|
|
public string Description { get; set; }=String.Empty;
|
|
public int InstanceCount { get; set; }
|
|
|
|
public string NoneDicomFileFirstFile { get; set; } = String.Empty;
|
|
public string SliceThickness { get; set; } = String.Empty;
|
|
|
|
public Guid TrialId { get; set; }
|
|
public Guid SiteId { get; set; }
|
|
public Guid SubjectId { get; set; }
|
|
public Guid SubjectVisitId { get; set; }
|
|
|
|
public Guid CreateUserId { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public Guid UpdateUserId { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
public bool IsDeleted { get; set; }
|
|
public bool IsReading { get; set; } = true;
|
|
|
|
public List<Guid> InstanceList { get; set; } = new List<Guid>();
|
|
|
|
public List<string> InstancePathList { get; set; } = new List<string>();
|
|
|
|
//存放在instance 上面
|
|
public string WindowCenter { get; set; } = string.Empty;
|
|
public string WindowWidth { get; set; } = string.Empty;
|
|
}
|
|
|
|
public class DicomSeriesWithLabelDTO : DicomSeriesDTO
|
|
{
|
|
public bool HasLabel { get; set; } = false;
|
|
public bool KeySeries { get; set; } = false;
|
|
}
|
|
}
|