34 lines
890 B
C#
34 lines
890 B
C#
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///PreviousOther
|
|
///</summary>
|
|
[Table("PreviousOther")]
|
|
public class PreviousOther : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
[JsonIgnore]
|
|
public SubjectVisit SubjectVisit { get; set; }
|
|
#endregion
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
public DateTime? EndTime { get; set; }
|
|
public bool IsPD { get; set; }
|
|
|
|
public Guid SubjectVisitId { get; set; }
|
|
public bool IsSubjectLevel { get; set; }
|
|
public string Path { get; set; } = String.Empty;
|
|
public string FileName { get; set; } = String.Empty;
|
|
public string TreatmentType { get; set; } = String.Empty;
|
|
|
|
/// <summary>
|
|
/// 临床数据类型Id
|
|
/// </summary>
|
|
[Required]
|
|
public Guid ClinicalDataTrialSetId { get; set; }
|
|
|
|
}
|
|
|
|
}
|