27 lines
510 B
C#
27 lines
510 B
C#
|
|
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///VisitPlanInfluenceStudystat
|
|
///</summary>
|
|
[Table("VisitPlanInfluenceStat")]
|
|
public class VisitPlanInfluenceStat : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
[JsonIgnore]
|
|
public List<VisitPlanInfluenceStudy> InfluenceStudyList { get; set; } = new List<VisitPlanInfluenceStudy>();
|
|
|
|
#endregion
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
public int InconsistentCount { get; set; }
|
|
|
|
|
|
}
|
|
|
|
}
|