项目配置

Uat_Study
hang 2022-06-15 13:52:12 +08:00
parent 2ddf3c4662
commit 515fcb237b
1 changed files with 21 additions and 15 deletions

View File

@ -20,8 +20,8 @@ namespace IRaCIS.Core.Domain.Models
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>();
@ -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;