修改一版

Uat_Study
he 2022-07-21 14:54:55 +08:00
parent e611380010
commit afb72a4662
2 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{ {
public Guid GlobalTaskId { get; set; } public Guid GlobalTaskId { get; set; }
public ReadingTaskState ReadingTaskState { get; set; }
public List<GlobalVisitInfo> TaskList { get; set; } public List<GlobalVisitInfo> TaskList { get; set; }
} }

View File

@ -151,6 +151,7 @@ namespace IRaCIS.Application.Services
GetGlobalReadingInfoOutDto result = new GetGlobalReadingInfoOutDto() GetGlobalReadingInfoOutDto result = new GetGlobalReadingInfoOutDto()
{ {
GlobalTaskId = inDto.VisitTaskId, GlobalTaskId = inDto.VisitTaskId,
ReadingTaskState=taskInfo.ReadingTaskState
}; };
result.TaskList = await _visitTaskRepository.Where(x => x.ReadingCategory == ReadingCategory.Visit && result.TaskList = await _visitTaskRepository.Where(x => x.ReadingCategory == ReadingCategory.Visit &&