using IRaCIS.Core.Domain.Share; using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace IRaCIS.Core.Domain.Models; [Comment("医生 - 入组项目流程记录表")] [Table("EnrollDetail")] public partial class EnrollDetail : BaseAddAuditEntity { #region 导航属性 [JsonIgnore] public virtual TrialStatusDetail TrialDetail { get; set; } [JsonIgnore] public Doctor Doctor { get; set; } #endregion public Guid DoctorId { get; set; } public Guid? EnrollId { get; set; } public EnrollStatus EnrollStatus { get; set; } [StringLength(1024)] public string Memo { get; set; } = null!; public int OptUserType { get; set; } public Guid TrialDetailId { get; set; } public Guid TrialId { get; set; } }