一致性分析

This commit is contained in:
2022-07-04 11:45:22 +08:00
parent f7963eebd8
commit 9b2d431fa8
10 changed files with 339 additions and 152 deletions
@@ -4,9 +4,11 @@
// 生成时间 2022-07-01 15:32:56
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
using System;
using IRaCIS.Core.Domain.Share;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Collections.Generic;
using EntityFrameworkCore.Projectables;
using System.Linq;
namespace IRaCIS.Core.Domain.Models
{
///<summary>
@@ -57,6 +59,12 @@ namespace IRaCIS.Core.Domain.Models
public User CompareDoctorUser { get; set; }
public User AnalysisDoctorUser { get; set; }
public List<VisitTask> DoctorVisitTaskList { get; set; }
[Projectable]
public List<VisitTask> DoctorConsistentTaskList => DoctorVisitTaskList.Where(t => t.IsAnalysisCreate && t.TaskConsistentRuleId == Id).ToList();
}
}