25 lines
619 B
C#
25 lines
619 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("医生 - 项目临床经历")]
|
|
[Table("TrialExperience")]
|
|
public partial class TrialExperience : BaseFullAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
[JsonIgnore]
|
|
public List<TrialExperienceCriteria> ExperienceCriteriaList { get; set; }
|
|
#endregion
|
|
public Guid DoctorId { get; set; }
|
|
|
|
public Guid? PhaseId { get; set; }
|
|
|
|
public Dictionary Phase { get; set; }
|
|
|
|
public string EvaluationContent { get; set; } = string.Empty;
|
|
public int VisitReadingCount { get; set; }
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
}
|