//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2022-08-26 10:38:09 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 using System; using IRaCIS.Core.Domain.Share; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using Microsoft.EntityFrameworkCore; namespace IRaCIS.Core.Domain.Models { [Comment("项目阅片 - 表格问题行记录")] [Table("ReadingTableAnswerRowInfo")] public class ReadingTableAnswerRowInfo : BaseFullDeleteAuditEntity { #region 导航属性 [JsonIgnore] [ForeignKey("InstanceId")] public DicomInstance Instance { get; set; } [JsonIgnore] [ForeignKey("VisitTaskId")] public VisitTask VisitTask { get; set; } [JsonIgnore] [ForeignKey("OrganInfoId")] public OrganInfo OrganInfo { get; set; } [JsonIgnore] [ForeignKey("SplitRowId")] public ReadingTableAnswerRowInfo SplitRow { get; set; } [JsonIgnore] [ForeignKey("MergeRowId")] public ReadingTableAnswerRowInfo MergeRow { get; set; } [JsonIgnore] [ForeignKey("QuestionId")] public ReadingQuestionTrial ReadingQuestionTrial { get; set; } //病灶答案表 [JsonIgnore] public List LesionAnswerList { get; set; } = new List(); #endregion public Guid QuestionId { get; set; } public Guid VisitTaskId { get; set; } public Guid TrialId { get; set; } public Guid? InstanceId { get; set; } public Guid? SeriesId { get; set; } public Guid? StudyId { get; set; } public Guid? OtherInstanceId { get; set; } public Guid? OtherSeriesId { get; set; } public Guid? OtherStudyId { get; set; } public string OtherMarkTool { get; set; } = string.Empty; public string OtherPicturePath { get; set; } = string.Empty; public int? OtherNumberOfFrames { get; set; } public bool IsCanEditPosition { get; set; } = false; /// /// 是Dicom阅片 /// public bool IsDicomReading { get; set; } = true; public decimal RowIndex { get; set; } public string MeasureData { get; set; } = string.Empty; /// /// 是否是当前任务添加 /// public bool IsCurrentTaskAdd { get; set; } = false; public Guid? SplitRowId { get; set; } public Guid? MergeRowId { get; set; } public string BlindName { get; set; } = string.Empty; public string OrderMark { get; set; } = string.Empty; /// /// 截图地址 /// public string PicturePath { get; set; } = string.Empty; /// /// 第一次添加的任务ID /// public decimal FristAddTaskNum { get; set; } = 0; /// /// 首次添加任务ID /// public Guid FristAddTaskId { get; set; } /// /// 融合的PTSeriesId /// public Guid? PTSeriesId { get; set; } /// /// 融合的CTSeriesId /// public Guid? CTSeriesId { get; set; } public SplitOrMergeType? SplitOrMergeType { get; set; } public int? NumberOfFrames { get; set; } /// /// 器官Id /// public Guid? OrganInfoId { get; set; } /// /// 窗宽WW /// public decimal? WW { get; set; } /// /// 窗位WL /// public decimal? WL { get; set; } /// /// 来自于哪个标记 /// public string FromMark { get; set; } = string.Empty; /// /// 报告页面显示来自于哪个标记 /// public string ReportMark { get; set; } = string.Empty; public string OtherMeasureData { get; set; } = string.Empty; //病灶编号 public string RowMark { get; set; } = string.Empty; /// /// 标记工具 /// public string MarkTool { get; set; } = string.Empty; } }