修改 应用到任务

This commit is contained in:
2022-06-13 16:07:23 +08:00
parent 1586e93acf
commit d8120a2d85
2 changed files with 35 additions and 7 deletions
@@ -116,6 +116,8 @@ namespace IRaCIS.Core.Application.ViewModel
public bool IsAssignDoctorApplyedTask => DoctorUserList.All(t=>t.IsAssignDoctorApplyedTask);
public List<Guid> DoctorUserIdList => DoctorUserList.Select(t => t.DoctorUserId).ToList();
public List<AssignDoctorView> DoctorUserList { get; set; } = new List<AssignDoctorView>();
}
@@ -123,6 +125,8 @@ namespace IRaCIS.Core.Application.ViewModel
public class AssignDoctorView
{
public Guid DoctorUserId { get; set; }
public string UserCode { get; set; }
public string UserName { get; set; }
public string FullName { get; set; }