裁判列表完成
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user