自身一致性分析
This commit is contained in:
@@ -27,6 +27,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
|
||||
public int? GeneratedVisitCount { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class ConsistentQuery : PageInput
|
||||
@@ -70,7 +71,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
|
||||
public List<VisitTaskSimpleView> VisitTaskList { get; set; }
|
||||
|
||||
public List<UserSimpleInfo> HistoryDoctorUserList => VisitTaskList.SelectMany(t => t.RelationDoctorUserList).DistinctBy(t=>t.UserId).ToList();
|
||||
//public List<UserSimpleInfo> HistoryDoctorUserList => VisitTaskList.SelectMany(t => t.RelationDoctorUserList).DistinctBy(t=>t.UserId).ToList();
|
||||
}
|
||||
|
||||
public class VisitTaskSimpleView
|
||||
@@ -99,8 +100,12 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
public String TrialSiteCode { get; set; } = String.Empty;
|
||||
public string SubjectCode { get; set; } = String.Empty;
|
||||
|
||||
[JsonIgnore]
|
||||
public List<UserSimpleInfo> RelationDoctorUserList { get; set; } = new List<UserSimpleInfo>();
|
||||
|
||||
|
||||
public List<VisitTaskSimpleView> GlobalVisitTaskList { get; set; }
|
||||
|
||||
//[JsonIgnore]
|
||||
//public List<UserSimpleInfo> RelationDoctorUserList { get; set; } = new List<UserSimpleInfo>();
|
||||
|
||||
[JsonIgnore]
|
||||
public Guid? DoctorUserId { get; set; }
|
||||
@@ -118,7 +123,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
{
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
public bool IsSelfAnalysis { get; set; }
|
||||
//public bool IsSelfAnalysis { get; set; }
|
||||
|
||||
}
|
||||
|
||||
@@ -132,7 +137,6 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
public int PlanSubjectCount { get; set; }
|
||||
public int PlanVisitCount { get; set; }
|
||||
public int IntervalWeeks { get; set; }
|
||||
public Guid? CompareDoctorUserId { get; set; }
|
||||
public bool IsHaveReadingPeriod { get; set; }
|
||||
public bool IsGenerateGlobalTask { get; set; }
|
||||
public Guid AnalysisDoctorUserId { get; set; }
|
||||
@@ -140,6 +144,12 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
}
|
||||
|
||||
|
||||
public class TaskConsistentRuleBatchAddOrEdit : TaskConsistentRuleAddOrEdit
|
||||
{
|
||||
|
||||
public bool IsBatchAdd { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user