修改上传接口

This commit is contained in:
2023-05-04 13:30:09 +08:00
parent 431375946b
commit c4860cdb74
3 changed files with 56 additions and 25 deletions
@@ -210,12 +210,9 @@ namespace IRaCIS.Core.Application.Contracts
public bool IsAdd { get; set; }
public AddOrUpdateStudyDto Study { get; set; }
public List<AddOrUpdateSeriesDto> SeriesList { get; set; }
public List<AddInstanceDto> InstanceList { get; set; }
}
}
public class AddOrUpdateStudyDto
{
@@ -253,6 +250,9 @@ namespace IRaCIS.Core.Application.Contracts
public string BodyPartExamined { get; set; } = string.Empty;
public List<AddOrUpdateSeriesDto> SeriesList { get; set; }
}
public class AddOrUpdateSeriesDto
@@ -278,6 +278,9 @@ namespace IRaCIS.Core.Application.Contracts
public string AcquisitionNumber { get; set; } = string.Empty;
public string TriggerTime { get; set; } = string.Empty;
public List<AddInstanceDto> InstanceList { get; set; }
}