IRC_NewDev
parent
2c119e900c
commit
6020248afc
|
@ -1038,6 +1038,30 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
public QuestionType? QuestionType { get; set; }
|
||||
|
||||
public string? OrderMarkName { get; set; } = string.Empty;
|
||||
|
||||
public string? OrderMarkName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// InstanceId
|
||||
/// </summary>
|
||||
public Guid? OtherInstanceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// SeriesId
|
||||
/// </summary>
|
||||
public Guid? OtherSeriesId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// StudyId
|
||||
/// </summary>
|
||||
public Guid? OtherStudyId { get; set; }
|
||||
|
||||
public string? OtherMarkTool { get; set; }
|
||||
|
||||
public string? OtherPicturePath { get; set; }
|
||||
|
||||
public int? OtherNumberOfFrames { get; set; }
|
||||
public string? OtherMeasureData { get; set; } = string.Empty;
|
||||
}
|
||||
public class GetReadingQuestionAndAnswerInDto
|
||||
{
|
||||
|
|
|
@ -84,6 +84,28 @@ namespace IRaCIS.Core.Domain.Models
|
|||
|
||||
public string? OrderMarkName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// InstanceId
|
||||
/// </summary>
|
||||
public Guid? OtherInstanceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// SeriesId
|
||||
/// </summary>
|
||||
public Guid? OtherSeriesId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// StudyId
|
||||
/// </summary>
|
||||
public Guid? OtherStudyId { get; set; }
|
||||
|
||||
public string? OtherMarkTool { get; set; }
|
||||
|
||||
public string? OtherPicturePath { get; set; }
|
||||
|
||||
public int? OtherNumberOfFrames { get; set; }
|
||||
public string? OtherMeasureData { get; set; } = string.Empty;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue