代码提交
parent
880525b015
commit
5175c857ec
|
@ -64,6 +64,8 @@ namespace IRaCIS.Core.Application.Contracts.Dicom.DTO
|
|||
|
||||
public Guid? StudyId { get; set; }
|
||||
public Guid? InstanceId { get; set; }
|
||||
|
||||
public int? NumberOfFrames { get; set; }
|
||||
}
|
||||
public class InstanceBasicInfo
|
||||
{
|
||||
|
|
|
@ -718,7 +718,7 @@ namespace IRaCIS.Application.Services
|
|||
{ClinicalLevel.ImageRead,2 },
|
||||
{ClinicalLevel.OncologyRead,3 },
|
||||
{ClinicalLevel.Subject,4 },
|
||||
{ClinicalLevel.Study,5 },
|
||||
{ClinicalLevel.Study,5 },
|
||||
};
|
||||
|
||||
result = result.OrderBy(x => keys[x.ClinicalDataLevel]).ToList();
|
||||
|
@ -1021,7 +1021,7 @@ namespace IRaCIS.Application.Services
|
|||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
#region 阅片临床数据PDF
|
||||
|
||||
|
|
|
@ -511,6 +511,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// CreateUserId
|
||||
/// </summary>
|
||||
public Guid CreateUserId { get; set; }
|
||||
|
||||
public int? NumberOfFrames { get; set; }
|
||||
}
|
||||
|
||||
public class GetManualListInDto
|
||||
|
|
|
@ -584,6 +584,7 @@ namespace IRaCIS.Core.Application.Services
|
|||
SeriesId = x.SeriesId,
|
||||
StudyId = x.StudyId,
|
||||
InstanceId = x.InstanceId,
|
||||
NumberOfFrames=x.NumberOfFrames,
|
||||
}).ToListAsync();
|
||||
|
||||
|
||||
|
@ -595,6 +596,7 @@ namespace IRaCIS.Core.Application.Services
|
|||
SeriesId = x.SeriesId,
|
||||
StudyId = x.StudyId,
|
||||
InstanceId = x.InstanceId,
|
||||
NumberOfFrames = x.NumberOfFrames,
|
||||
}).ToListAsync();
|
||||
|
||||
rowInfoList.AddRange(customoList);
|
||||
|
|
|
@ -49,8 +49,10 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// CreateUserId
|
||||
/// </summary>
|
||||
public Guid CreateUserId { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public int? NumberOfFrames { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue