32 lines
524 B
C#
32 lines
524 B
C#
|
|
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///EnrollReadingCriterion
|
|
///</summary>
|
|
[Table("EnrollReadingCriterion")]
|
|
public class EnrollReadingCriterion : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("EnrollId")]
|
|
public Enroll Enroll { get; set; }
|
|
#endregion
|
|
|
|
|
|
public Guid EnrollId { get; set; }
|
|
|
|
public Guid TrialReadingCriterionId { get; set; }
|
|
|
|
public bool IsJoinAnalysis { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|