临时去掉导航属性
This commit is contained in:
@@ -100,7 +100,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
public string SubjectCode { get; set; } = String.Empty;
|
||||
|
||||
[JsonIgnore]
|
||||
public List<UserSimpleInfo> RelationDoctorUserList { get; set; }
|
||||
public List<UserSimpleInfo> RelationDoctorUserList { get; set; } = new List<UserSimpleInfo>();
|
||||
|
||||
[JsonIgnore]
|
||||
public Guid? DoctorUserId { get; set; }
|
||||
|
||||
@@ -164,7 +164,7 @@ namespace IRaCIS.Core.Application.Service
|
||||
// 组内一致性分析
|
||||
.WhereIf(isSelfAnalysis == false && subjectfilter != null, t => t.DoctorUserId == filterObj.AnalysisDoctorUserId && subjectfilter.Contains(t.SubjectId))
|
||||
.Where(t => t.ReadingTaskState == ReadingTaskState.HaveSigned && t.TaskState == TaskState.Effect)
|
||||
.Where(t => t.SignTime!.Value.AddDays(filterObj.IntervalWeeks * 7 + 1) > DateTime.Now)
|
||||
.Where(t => t.SignTime!.Value.AddDays(filterObj.IntervalWeeks * 7 + 1) < DateTime.Now)
|
||||
//重阅产生的访视任务 要把之前的访视任务去除
|
||||
.Where(t => t.ReReadingApplyState == ReReadingApplyState.Default || t.ReReadingApplyState == ReReadingApplyState.Reject)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user