//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2021-12-09 11:35:31 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 using IRaCIS.Core.Domain.Share; using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace IRaCIS.Core.Domain.Models { /// ///PreviousPDF /// [Table("PreviousPDF")] public class PreviousPDF : BaseAddAuditEntity { #region 导航属性 [JsonIgnore] public SubjectVisit SubjectVisit { get; set; } #endregion public Guid SubjectVisitId { get; set; } public string Path { get; set; } public string FileName { get; set; } public bool? IsVisist { get; set; } /// /// 临床级别 /// public ClinicalLevel? ClinicalLevel { get; set; } /// /// 数据类型 /// public ClinicalDataType? DataType { get; set; } /// /// 上传方式 /// public ClinicalUploadType? UploadType { get; set; } public Guid? TrialId { get; set; } public Guid? SubjectId { get; set; } } }