27 lines
697 B
C#
27 lines
697 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
public class TrialAudit : Entity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public Trial Trial { get; set; }
|
|
[JsonIgnore]
|
|
[ForeignKey("SubjectId")]
|
|
public Subject Subject { get; set; }
|
|
#endregion
|
|
public int AuditType { get; set; }
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
public Guid StudyId { get; set; } = Guid.Empty;
|
|
|
|
public Guid? SubjectId { get; set; }
|
|
|
|
public Guid OptUserId { get; set; }
|
|
|
|
public string OptUser { get; set; } = string.Empty;
|
|
|
|
public DateTime OptTime { get; set; } = DateTime.Now;
|
|
public string Note { get; set; } = string.Empty;
|
|
|
|
public string Detail { get; set; } = string.Empty;
|
|
} |