43 lines
752 B
C#
43 lines
752 B
C#
|
|
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
/// 阅片期和中心关联
|
|
///</summary>
|
|
[Table("ReadingPeriodSite")]
|
|
public class ReadingPeriodSite : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public TrialSite TrialSite { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public ReadingPeriodSet ReadingPeriodSet { get; set; }
|
|
#endregion
|
|
/// <summary>
|
|
///阅片期配置ID
|
|
/// </summary>
|
|
|
|
public Guid ReadingPeriodSetId { get; set; }
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
public Guid TrialSiteId { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|