34 lines
882 B
C#
34 lines
882 B
C#
using IRaCIS.Core.Domain.Share;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("EnrollDetail")]
|
|
public partial class EnrollDetail : BaseAddAuditEntity
|
|
{
|
|
#region µ¼º½ÊôÐÔ
|
|
[JsonIgnore]
|
|
public virtual TrialStatusDetail TrialDetail { get; set; }
|
|
[JsonIgnore]
|
|
[ForeignKey("CreateUserId")]
|
|
public User CreateUser { get; set; }
|
|
[JsonIgnore]
|
|
public Doctor Doctor { get; set; }
|
|
#endregion
|
|
|
|
|
|
public Guid DoctorId { get; set; }
|
|
public Guid TrialId { get; set; }
|
|
public EnrollStatus EnrollStatus { get; set; }
|
|
public Guid? EnrollId { get; set; }
|
|
public string Memo { get; set; } = string.Empty;
|
|
public int OptUserType { get; set; }
|
|
|
|
|
|
public Guid TrialDetailId { get; set; }
|
|
|
|
|
|
}
|
|
}
|