//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2023-09-21 16:08:07 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 using System; using IRaCIS.Core.Domain.Share; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace IRaCIS.Core.Domain.Models { /// /// /// [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; } public string MarkTool { get; set; } = string.Empty; public string PicturePath { get; set; } = string.Empty; public int? NumberOfFrames { get; set; } 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; } public string? OtherMarkTool { get; set; } = string.Empty; public string? OtherPicturePath { get; set; } = string.Empty; public int? OtherNumberOfFrames { get; set; } public string? OtherMeasureData { get; set; } = string.Empty; } }