裁判列表完成

This commit is contained in:
2022-06-14 09:17:12 +08:00
parent 13b288819e
commit d349e049dd
8 changed files with 121 additions and 8 deletions
@@ -54,6 +54,29 @@ namespace IRaCIS.Core.Application.ViewModel
}
public class JudgeVisitTaskView : VisitTaskView
{
public string? JudgeTaskCode { get; set; }
public List<HistoryReadingDoctorUser> HistoryReadingDoctorUserList { get; set; }
}
public class HistoryReadingDoctorUser
{
public Guid DoctorUserId { get; set; }
public string UserCode { get; set; }
public string UserName { get; set; }
public string FullName { get; set; }
}
public class VisitTaskQuery : PageInput
{
@@ -114,7 +137,7 @@ namespace IRaCIS.Core.Application.ViewModel
public bool IsAssignedDoctorUser { get; set; }
public bool IsAssignDoctorApplyedTask => DoctorUserList.All(t=>t.IsAssignDoctorApplyedTask) && DoctorUserList.Count>0;
public bool IsAssignDoctorApplyedTask => DoctorUserList.All(t => t.IsAssignDoctorApplyedTask) && DoctorUserList.Count > 0;
public List<Guid> DoctorUserIdList => DoctorUserList.Select(t => t.DoctorUserId).ToList();