This commit is contained in:
he
2022-11-29 17:29:23 +08:00
parent 1503ab9bce
commit dfba8820d6
6 changed files with 66 additions and 24 deletions
@@ -234,7 +234,16 @@ namespace IRaCIS.Core.Application.ViewModel
public bool IsUrgent => UnReadTaskList.Any(t => t.IsUrgent);
public int UnReadTaskCount { get; set; }
public int UnReadTaskCount
{
get
{
return this.UnReadTaskList.Count();
}
}
public bool ExistReadingApply { get; set; }
@@ -282,7 +291,17 @@ namespace IRaCIS.Core.Application.ViewModel
}
public class GetOrderReadingIQueryableInDto
{
public Guid TrialId { get; set; }
public Guid TrialReadingCriterionId { get; set; }
public string? SubjectCode { get; set; } = null;
public PageInput? Page { get; set; } = null;
}
public class VisitTaskQuery : PageInput
{