修改序列
parent
cde58ace66
commit
a0747230ac
|
@ -278,6 +278,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
public string AcquisitionNumber { get; set; } = string.Empty;
|
public string AcquisitionNumber { get; set; } = string.Empty;
|
||||||
public string TriggerTime { get; set; } = string.Empty;
|
public string TriggerTime { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string IamgeResizePath { get; set; }
|
||||||
public List<AddInstanceDto> InstanceList { get; set; }
|
public List<AddInstanceDto> InstanceList { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -256,9 +256,10 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
//该序列掉了instance
|
//该序列掉了instance
|
||||||
dicomSeries.InstanceCount += seriesItem.InstanceCount;
|
dicomSeries.InstanceCount += seriesItem.InstanceCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dicomSeries.IamgeResizePath = seriesItem.IamgeResizePath;
|
||||||
|
|
||||||
foreach (var instanceItem in seriesItem.InstanceList)
|
foreach (var instanceItem in seriesItem.InstanceList)
|
||||||
{
|
{
|
||||||
|
|
|
@ -61,5 +61,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
public bool IsDeleted {get;set;}
|
public bool IsDeleted {get;set;}
|
||||||
public bool IsReading { get; set; } = true;
|
public bool IsReading { get; set; } = true;
|
||||||
|
|
||||||
|
public string IamgeResizePath { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue