Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
86ea3ebc32
|
@ -15,7 +15,6 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
|
|
||||||
public bool IsCriticalSequence { get; set; } = false;
|
public bool IsCriticalSequence { get; set; } = false;
|
||||||
|
|
||||||
public string StudyName { get; set; }
|
|
||||||
|
|
||||||
public List<NoneDicomStudyFileView> NoneDicomStudyFileList { get; set; } = new List<NoneDicomStudyFileView>();
|
public List<NoneDicomStudyFileView> NoneDicomStudyFileList { get; set; } = new List<NoneDicomStudyFileView>();
|
||||||
|
|
||||||
|
@ -62,6 +61,8 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
|
|
||||||
public int Code { get; set; }
|
public int Code { get; set; }
|
||||||
|
|
||||||
|
public string StudyName { get; set; }
|
||||||
|
|
||||||
public string VideoName { get; set; } = string.Empty;
|
public string VideoName { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string VideoObjectName { get; set; } = string.Empty;
|
public string VideoObjectName { get; set; } = string.Empty;
|
||||||
|
|
|
@ -355,8 +355,13 @@ namespace IRaCIS.Core.Application.Contracts.DTO
|
||||||
|
|
||||||
public int? NotClosedChallengeCount { get; set; }
|
public int? NotClosedChallengeCount { get; set; }
|
||||||
|
|
||||||
|
public List<StudyName> StudyNameList { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public List<string> ImageFormatList { get; set; }
|
||||||
|
|
||||||
|
public bool IsShowStudyName { get; set; } = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
public class QAStudyInfoDTO
|
public class QAStudyInfoDTO
|
||||||
{
|
{
|
||||||
|
|
|
@ -592,7 +592,10 @@ namespace IRaCIS.Core.Application.Service
|
||||||
.ForMember(d => d.SubjectFirstGiveMedicineTime, u => u.MapFrom(s => s.Subject.FirstGiveMedicineTime))
|
.ForMember(d => d.SubjectFirstGiveMedicineTime, u => u.MapFrom(s => s.Subject.FirstGiveMedicineTime))
|
||||||
.ForMember(d => d.SiteName, u => u.MapFrom(s => s.TrialSite.TrialSiteName))
|
.ForMember(d => d.SiteName, u => u.MapFrom(s => s.TrialSite.TrialSiteName))
|
||||||
.ForMember(d => d.TotalChallengeCount, u => u.MapFrom(s => s.QCChallengeList.Count()))
|
.ForMember(d => d.TotalChallengeCount, u => u.MapFrom(s => s.QCChallengeList.Count()))
|
||||||
.ForMember(d => d.NotClosedChallengeCount, u => u.MapFrom(s => s.QCChallengeList.Count(c => c.IsClosed == false)));
|
.ForMember(d => d.NotClosedChallengeCount, u => u.MapFrom(s => s.QCChallengeList.Count(c => c.IsClosed == false)))
|
||||||
|
.ForMember(d => d.IsShowStudyName, u => u.MapFrom(s => s.Trial.IsShowStudyName))
|
||||||
|
.ForMember(d => d.StudyNameList, u => u.MapFrom(s => s.Trial.StudyNameList))
|
||||||
|
.ForMember(d => d.ImageFormatList, u => u.MapFrom(s => s.Trial.ImageFormatList));
|
||||||
|
|
||||||
|
|
||||||
CreateMap<Subject, QARelationInfo>(MemberList.None);
|
CreateMap<Subject, QARelationInfo>(MemberList.None);
|
||||||
|
|
Loading…
Reference in New Issue