@@ -1274,6 +1274,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public string? PicturePath { get; set; }
|
||||
|
||||
public string? Path { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// NumberOfFrames
|
||||
/// </summary>
|
||||
@@ -2506,6 +2508,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
|
||||
public string Path { get; set; }
|
||||
|
||||
public string PicturePath { get; set; } = string.Empty;
|
||||
|
||||
public string MeasureData { get; set; } = string.Empty;
|
||||
|
||||
public Guid QuestionId { get; set; }
|
||||
|
||||
@@ -90,6 +90,7 @@ namespace IRaCIS.Core.Application.Service
|
||||
OrderMarkName = inDto.OrderMarkName,
|
||||
NoneDicomFileId = inDto.NoneDicomFileId,
|
||||
Path = inDto.Path,
|
||||
PicturePath = inDto.PicturePath,
|
||||
MeasureData = inDto.MeasureData,
|
||||
MarkId = inDto.MarkId
|
||||
};
|
||||
|
||||
@@ -125,8 +125,8 @@ namespace IRaCIS.Core.Application.Service
|
||||
.ForMember(d => d.FristAddTaskId, u => u.MapFrom(s => s.FristAddTaskId!.Value));
|
||||
CreateMap<ReadingTaskQuestionMark, QuestionMarkInfo>();
|
||||
|
||||
CreateMap<ReadingNoneDicomMark, QuestionMarkInfo>()
|
||||
.ForMember(d => d.PicturePath, u => u.MapFrom(s => s.Path));
|
||||
CreateMap<ReadingNoneDicomMark, QuestionMarkInfo>();
|
||||
|
||||
|
||||
CreateMap<ReadingNoneDicomMarkBinding, QuestionMarkInfo>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user