@@ -4,55 +4,47 @@
|
||||
// 生成时间 2021-12-09 11:35:31
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
namespace IRaCIS.Core.Domain.Models;
|
||||
|
||||
[Comment("受试者访视 - 临床数据配置")]
|
||||
[Table("PreviousPDF")]
|
||||
public class PreviousPDF : BaseAddAuditEntity
|
||||
{
|
||||
///<summary>
|
||||
///PreviousPDF
|
||||
///</summary>
|
||||
[Table("PreviousPDF")]
|
||||
public class PreviousPDF : BaseAddAuditEntity
|
||||
{
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
public SubjectVisit SubjectVisit { get; set; }
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
public SubjectVisit SubjectVisit { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
public Guid SubjectVisitId { get; set; }
|
||||
|
||||
public string Path { get; set; } = string.Empty;
|
||||
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
#endregion
|
||||
|
||||
|
||||
public bool? IsVisist { get; set; }
|
||||
[Comment("临床级别")]
|
||||
public ClinicalLevel? ClinicalLevel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 临床级别
|
||||
/// </summary>
|
||||
public ClinicalLevel? ClinicalLevel { get; set; }
|
||||
public ClinicalDataType? DataType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数据类型
|
||||
/// </summary>
|
||||
public ClinicalDataType? DataType { get; set; }
|
||||
public string FileName { get; set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// 上传方式
|
||||
/// </summary>
|
||||
public ClinicalUploadType? UploadType { get; set; }
|
||||
public bool? IsVisist { get; set; }
|
||||
|
||||
public Guid? TrialId { get; set; }
|
||||
[StringLength(512)]
|
||||
public string Path { get; set; } = null!;
|
||||
|
||||
public Guid? SubjectId { get; set; }
|
||||
|
||||
public Guid SubjectVisitId { get; set; }
|
||||
|
||||
public Guid? TrialId { get; set; }
|
||||
|
||||
[Comment("上传方式")]
|
||||
public ClinicalUploadType? UploadType { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public Guid? SubjectId { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user