项目配置
parent
2ddf3c4662
commit
515fcb237b
|
@ -7,7 +7,7 @@ using IRaCIS.Core.Domain.Share;
|
||||||
namespace IRaCIS.Core.Domain.Models
|
namespace IRaCIS.Core.Domain.Models
|
||||||
{
|
{
|
||||||
[Table("Trial")]
|
[Table("Trial")]
|
||||||
public partial class Trial : Entity, IAuditUpdate, IAuditAdd,ISoftDelete
|
public partial class Trial : Entity, IAuditUpdate, IAuditAdd, ISoftDelete
|
||||||
{
|
{
|
||||||
public Trial()
|
public Trial()
|
||||||
{
|
{
|
||||||
|
@ -15,13 +15,13 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
TrialDicList = new List<TrialDictionary>();
|
TrialDicList = new List<TrialDictionary>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<SubjectUser> SubjectDoctorUserList { get; set; }=new List<SubjectUser>();
|
public List<SubjectUser> SubjectDoctorUserList { get; set; } = new List<SubjectUser>();
|
||||||
public List<VisitTask> VisitTaskList { get; set; }=new List<VisitTask>(){ };
|
public List<VisitTask> VisitTaskList { get; set; } = new List<VisitTask>() { };
|
||||||
|
|
||||||
public List<TrialSiteSurvey> TrialSiteSurveyList { get; set; } = new List<TrialSiteSurvey>();
|
public List<TrialSiteSurvey> TrialSiteSurveyList { get; set; } = new List<TrialSiteSurvey>();
|
||||||
public List<TrialDocument> TrialDocumentList { get; set; }
|
public List<TrialDocument> TrialDocumentList { get; set; }
|
||||||
public List<Enroll> EnrollList { get; set; }
|
public List<Enroll> EnrollList { get; set; } = new List<Enroll>();
|
||||||
public List<Workload> WorkloadList { get; set; }
|
public List<Workload> WorkloadList { get; set; } = new List<Workload>();
|
||||||
public List<TrialUser> TrialUserList { get; set; } = new List<TrialUser>();
|
public List<TrialUser> TrialUserList { get; set; } = new List<TrialUser>();
|
||||||
|
|
||||||
public List<ReadingQuestionCriterionTrial> ReadingQuestionCriterionTrialList { get; set; } = new List<ReadingQuestionCriterionTrial>();
|
public List<ReadingQuestionCriterionTrial> ReadingQuestionCriterionTrialList { get; set; } = new List<ReadingQuestionCriterionTrial>();
|
||||||
|
@ -62,7 +62,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public List<ClinicalDataTrialSet> clinicalDataTrialSets { get; set; }=new List<ClinicalDataTrialSet> { };
|
public List<ClinicalDataTrialSet> clinicalDataTrialSets { get; set; } = new List<ClinicalDataTrialSet> { };
|
||||||
|
|
||||||
public virtual ICollection<TrialStatusDetail> ClinicalTrialProjectDetails { get; set; }
|
public virtual ICollection<TrialStatusDetail> ClinicalTrialProjectDetails { get; set; }
|
||||||
public virtual ICollection<TrialDictionary> TrialDicList { get; set; }
|
public virtual ICollection<TrialDictionary> TrialDicList { get; set; }
|
||||||
|
@ -319,20 +319,26 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
public DateTime? DeletedTime { get; set; }
|
public DateTime? DeletedTime { get; set; }
|
||||||
public Guid? DeleteUserId { get; set; }
|
public Guid? DeleteUserId { get; set; }
|
||||||
|
|
||||||
|
//任务分配对象
|
||||||
public TaskAllocateObj TaskAllocateObjEnum { get; set; }
|
public TaskAllocateObj TaskAllocateObjEnum { get; set; }
|
||||||
|
|
||||||
|
//后续访视任务自动分配
|
||||||
public bool IsFollowVisitAutoAssign { get; set; }
|
public bool IsFollowVisitAutoAssign { get; set; }
|
||||||
|
|
||||||
|
//后续全局自动分配
|
||||||
public bool IsFollowGlobalVisitAutoAssign { get; set; }
|
public bool IsFollowGlobalVisitAutoAssign { get; set; }
|
||||||
|
|
||||||
|
//后续访视自动分配默认状态
|
||||||
public TaskAllocateDefaultState FollowVisitAutoAssignDefaultState { get; set; }
|
public TaskAllocateDefaultState FollowVisitAutoAssignDefaultState { get; set; }
|
||||||
|
|
||||||
|
//后续全局自动分配默认状态
|
||||||
public TaskAllocateDefaultState FollowGlobalVisitAutoAssignDefaultState { get; set; }
|
public TaskAllocateDefaultState FollowGlobalVisitAutoAssignDefaultState { get; set; }
|
||||||
|
|
||||||
|
//读片任务显示规则
|
||||||
|
|
||||||
public ReadingTaskViewMethod ReadingTaskViewEnum { get; set; }
|
public ReadingTaskViewMethod ReadingTaskViewEnum { get; set; }
|
||||||
|
|
||||||
|
//读片任务显示是否顺序
|
||||||
public bool IsReadingTaskViewInOrder { get; set; } = true;
|
public bool IsReadingTaskViewInOrder { get; set; } = true;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue