添加项目文件。

This commit is contained in:
DK
2022-03-28 15:27:40 +08:00
parent b620fcb0cf
commit dc78fd1a09
898 changed files with 173053 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("EnrollDetail")]
public partial class EnrollDetail : Entity, IAuditAdd
{
public virtual TrialStatusDetail TrialDetail { get; set; }
public Guid DoctorId { get; set; }
public Guid TrialId { get; set; }
public int EnrollStatus { get; set; }
public Guid? EnrollId { get; set; }
public string Memo { get; set; } = string.Empty;
public Guid CreateUserId { get; set; }
public int OptUserType { get; set; }
public DateTime CreateTime { get; set; }
[ForeignKey("TrialDetail")]
public Guid TrialDetailId { get; set; }
[ForeignKey("CreateUserId")]
public User CreateUser { get; set; }
public Doctor Doctor { get; set; }
}
}