irc-netcore-api/IRaCIS.Core.Domain/Dcotor/TrialExperience.cs

39 lines
922 B
C#

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Comment("医生 - 项目临床经历")]
[Table("TrialExperience")]
public partial class TrialExperience : BaseFullAuditEntity
{
#region 导航属性
[JsonIgnore]
public List<TrialExperienceCriteria> ExperienceCriteriaList { get; set; }
[JsonIgnore]
public Dictionary Phase { get; set; }
#endregion
public Guid DoctorId { get; set; }
public Guid? PhaseId { get; set; }
[StringLength(512)]
public string EvaluationContent { get; set; } = string.Empty;
public int VisitReadingCount { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
}
}