86 lines
2.5 KiB
C#
86 lines
2.5 KiB
C#
using IRaCIS.Core.Domain.Share;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("项目 - 项目中心调研表")]
|
|
[Table("TrialSiteSurvey")]
|
|
public class TrialSiteSurvey : BaseFullDeleteAuditEntity
|
|
{
|
|
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public List<TrialSiteUserSurvey> TrialSiteUserSurveyList { get; set; } = new List<TrialSiteUserSurvey>();
|
|
[JsonIgnore]
|
|
public List<TrialSiteEquipmentSurvey> TrialSiteEquipmentSurveyList { get; set; } = new List<TrialSiteEquipmentSurvey>();
|
|
|
|
[JsonIgnore]
|
|
public TrialSite TrialSite { get; set; }
|
|
[JsonIgnore]
|
|
public Trial Trial { get; set; }
|
|
[JsonIgnore]
|
|
public UserRole ReviewerUser { get; set; }
|
|
[JsonIgnore]
|
|
public UserRole PreliminaryUser { get; set; }
|
|
#endregion
|
|
|
|
public Guid TrialSiteId { get; set; }
|
|
|
|
public TrialSiteSurveyEnum State { get; set; } = TrialSiteSurveyEnum.ToSubmit;
|
|
public Guid TrialId { get; set; }
|
|
public string UserName { get; set; } = string.Empty;
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public int AverageEngravingCycle { get; set; }
|
|
|
|
public bool IsConfirmImagingTechnologist { get; set; }
|
|
|
|
public string NotConfirmReson { get; set; } = string.Empty;
|
|
|
|
public int EfficacyEvaluatorType { get; set; }
|
|
|
|
public bool IsFollowStudyParameters { get; set; }
|
|
|
|
public string NotFollowReson { get; set; } = string.Empty;
|
|
|
|
public string LatestBackReason { get; set; } = string.Empty;
|
|
|
|
public Guid? PreliminaryUserId { get; set; }
|
|
|
|
public Guid? ReviewerUserId { get; set; }
|
|
|
|
public DateTime? PreliminaryTime { get; set; }
|
|
|
|
public DateTime? ReviewerTime { get; set; }
|
|
|
|
|
|
|
|
|
|
[Comment("MRI-PDEE 是否为本中心该适应症的常规诊疗检查项目")]
|
|
public bool? IsRoutineMRIPDEE { get; set; }
|
|
|
|
[Comment("MRI-PDFF 单次检查时长")]
|
|
public string MRIPDFFScanTime { get; set; }
|
|
|
|
[Comment("MRI-PDFF 预约等待时长")]
|
|
public string MRIPDFFLeadTime { get; set; }
|
|
|
|
[Comment("MRI-PDEE 其他")]
|
|
public string MRIPDFFOther { get; set; }
|
|
|
|
|
|
[Comment("是否授权影像科老师参与")]
|
|
|
|
public bool? IsAuthorizeRadiologistsParticipate { get; set; }
|
|
|
|
[Comment("保持 1-2 名固定技师")]
|
|
public bool? AssignFixedTechnologists { get; set; }
|
|
|
|
|
|
[Comment("是否严格按照影像手册参数完成刻盘")]
|
|
public bool? ISStrictManualBurnFlag { get; set; }
|
|
|
|
[Comment("不严格按照影像手册参数完成刻盘原因")]
|
|
public string NotStrictManualBurnFlagReason { get; set; }
|
|
}
|
|
|