48 lines
812 B
C#
48 lines
812 B
C#
|
|
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///PreviousHistory
|
|
///</summary>
|
|
[Table("PreviousHistory")]
|
|
public class PreviousHistory : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public SubjectVisit SubjectVisit { get; set; }
|
|
#endregion
|
|
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
|
|
public int? 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 Position { get; set; } = String.Empty;
|
|
|
|
|
|
|
|
public Guid ClinicalDataTrialSetId { get; set; }
|
|
|
|
|
|
}
|
|
|
|
}
|