58 lines
1.5 KiB
C#
58 lines
1.5 KiB
C#
using IRaCIS.Core.Domain.Share;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("项目阅片 - 任务问题标记")]
|
|
[Table("ReadingTaskQuestionMark")]
|
|
public class ReadingTaskQuestionMark : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("QuestionId")]
|
|
public ReadingQuestionTrial ReadingQuestionTrial { get; set; }
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("VisitTaskId")]
|
|
public VisitTask VisitTask { get; set; }
|
|
#endregion
|
|
public Guid VisitTaskId { get; set; }
|
|
|
|
public Guid QuestionId { get; set; }
|
|
|
|
public Guid? InstanceId { get; set; }
|
|
|
|
public Guid? SeriesId { get; set; }
|
|
public Guid? StudyId { get; set; }
|
|
|
|
[MaxLength]
|
|
public string MarkTool { get; set; } = string.Empty;
|
|
|
|
[StringLength(1000)]
|
|
public string PicturePath { get; set; } = string.Empty;
|
|
|
|
public int? NumberOfFrames { get; set; }
|
|
|
|
[MaxLength]
|
|
public string MeasureData { get; set; } = string.Empty;
|
|
public Guid? FirstAddTaskId { get; set; }
|
|
|
|
public QuestionType? QuestionType { get; set; }
|
|
public string OrderMarkName { get; set; } = string.Empty;
|
|
|
|
public Guid? OtherInstanceId { get; set; }
|
|
|
|
public Guid? OtherSeriesId { get; set; }
|
|
|
|
public Guid? OtherStudyId { get; set; }
|
|
|
|
[MaxLength]
|
|
public string OtherMarkTool { get; set; } = string.Empty;
|
|
|
|
[StringLength(1000)]
|
|
public string OtherPicturePath { get; set; } = string.Empty;
|
|
|
|
public int? OtherNumberOfFrames { get; set; }
|
|
|
|
[MaxLength]
|
|
public string OtherMeasureData { get; set; } = string.Empty;
|
|
}
|