修改超时问题
parent
04dd15df5f
commit
f77f2ce224
|
@ -51,8 +51,8 @@ namespace IRaCIS.Core.Application.Service
|
|||
.ForMember(o => o.StudyTime, t => t.MapFrom(u => u.DicomStudy.StudyTime))
|
||||
|
||||
.ForMember(o => o.StudyCode, t => t.MapFrom(u => u.DicomStudy.StudyCode))
|
||||
.ForMember(o => o.InstanceList, t => t.MapFrom(u => u.DicomInstanceList.Select(t=>t.Id).ToArray()))
|
||||
.ForMember(o => o.InstancePathList, t => t.MapFrom(u => u.DicomInstanceList.OrderBy(t=>t.InstanceNumber).Select(t => t.Path)))
|
||||
//.ForMember(o => o.InstanceList, t => t.MapFrom(u => u.DicomInstanceList.Select(t=>t.Id).ToArray()))
|
||||
// .ForMember(o => o.InstancePathList, t => t.MapFrom(u => u.DicomInstanceList.OrderBy(t=>t.InstanceNumber).Select(t => t.Path)))
|
||||
;
|
||||
|
||||
CreateMap<DicomStudy, QAStudyInfoDTO>()
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
public Guid CreateUserId { get; set; }
|
||||
public Guid NoneDicomStudyId { get; set; }
|
||||
|
||||
public string FullFilePath { get; set; } = string.Empty;
|
||||
public string FullFilePath => Path;
|
||||
|
||||
public string PreviewPath => "/Common/LocalFilePreview?relativePath=" + Path;
|
||||
|
||||
|
|
|
@ -414,10 +414,9 @@ namespace IRaCIS.Core.Application.Contracts.DTO
|
|||
|
||||
public bool IsDeleted { get; set; }
|
||||
|
||||
//public Guid[] InstanceList = new Guid[0];
|
||||
//public List<string> InstancePathList = new List<string>();
|
||||
|
||||
public Guid[] InstanceList = new Guid[0];
|
||||
|
||||
public List<string> InstancePathList = new List<string>();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -608,7 +608,7 @@ namespace IRaCIS.Core.Application.Image.QA
|
|||
StudyList = temp.StudyList,
|
||||
SeriesList = temp.SeriesList,
|
||||
RelationInfo = await GetVisitQCSubjectInfo(subjectVisitId),
|
||||
NoneDicomStudyList = await _repository.Where<NoneDicomStudy>(t => t.SubjectVisitId == subjectVisitId).ProjectTo<NoneDicomStudyView>(_mapper.ConfigurationProvider, new { token = _userInfo.UserToken }).ToListAsync(),
|
||||
NoneDicomStudyList = await _repository.Where<NoneDicomStudy>(t => t.SubjectVisitId == subjectVisitId).ProjectTo<NoneDicomStudyView>(_mapper.ConfigurationProvider).ToListAsync(),
|
||||
SubjectClinicalData = await _subjectVisitRepository.Where(t => t.Id == subjectVisitId)
|
||||
.ProjectTo<SubjectClinicalDataDto>(_mapper.ConfigurationProvider, new { subjectVisitId = subjectVisitId, token = _userInfo.UserToken }).FirstOrDefaultAsync()
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue