增加ACC number
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
22c9386101
commit
32ba46206b
|
@ -0,0 +1,4 @@
|
||||||
|
FROM registry.cn-shanghai.aliyuncs.com/extimaging/aspnetcore:v8.2
|
||||||
|
WORKDIR /app
|
||||||
|
COPY publish .
|
||||||
|
ENTRYPOINT ["dotnet", "IRaCIS.Core.API.dll"]
|
|
@ -135,7 +135,7 @@ namespace IRaCIS.Core.SCP.Service
|
||||||
if (!trialCalledAEList.Contains(association.CalledAE) || isCanReceiveIamge == false)
|
if (!trialCalledAEList.Contains(association.CalledAE) || isCanReceiveIamge == false)
|
||||||
{
|
{
|
||||||
|
|
||||||
Log.Logger.Warning($"拒绝CalledAE:{association.CalledAE}的连接");
|
Log.Logger.Warning($"拒绝CallingAE:{association.CallingAE} CalledAE:{association.CalledAE}的连接");
|
||||||
|
|
||||||
return SendAssociationRejectAsync(
|
return SendAssociationRejectAsync(
|
||||||
DicomRejectResult.Permanent,
|
DicomRejectResult.Permanent,
|
||||||
|
|
|
@ -5641,6 +5641,11 @@
|
||||||
单位
|
单位
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingReportDto.HighlightAnswer">
|
||||||
|
<summary>
|
||||||
|
高亮问题的答案
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingReportDto.GroupEnName">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingReportDto.GroupEnName">
|
||||||
<summary>
|
<summary>
|
||||||
问题英文分组
|
问题英文分组
|
||||||
|
@ -8632,6 +8637,11 @@
|
||||||
关联Value
|
关联Value
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionSystemInDto.HighlightAnswer">
|
||||||
|
<summary>
|
||||||
|
高亮问题的答案
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionSystemInDto.Type">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionSystemInDto.Type">
|
||||||
<summary>
|
<summary>
|
||||||
类型
|
类型
|
||||||
|
@ -8732,6 +8742,11 @@
|
||||||
Id
|
Id
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.HighlightAnswer">
|
||||||
|
<summary>
|
||||||
|
高亮问题的答案
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.ClassifyAlgorithms">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.ClassifyAlgorithms">
|
||||||
<summary>
|
<summary>
|
||||||
分类算法
|
分类算法
|
||||||
|
|
|
@ -1052,7 +1052,7 @@ namespace IRaCIS.Application.Contracts
|
||||||
public string CallingAE { get; set; } = string.Empty;
|
public string CallingAE { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string BodyPartExamined { get; set; } = string.Empty;
|
public string BodyPartExamined { get; set; } = string.Empty;
|
||||||
|
public string AccessionNumber { get; set; } = string.Empty;
|
||||||
public string PatientIdStr { get; set; } = string.Empty;
|
public string PatientIdStr { get; set; } = string.Empty;
|
||||||
public string PatientName { get; set; } = string.Empty;
|
public string PatientName { get; set; } = string.Empty;
|
||||||
public string PatientAge { get; set; } = string.Empty;
|
public string PatientAge { get; set; } = string.Empty;
|
||||||
|
|
|
@ -266,6 +266,7 @@ namespace IRaCIS.Application.Services
|
||||||
SeriesCount = scpStudy.SeriesCount,
|
SeriesCount = scpStudy.SeriesCount,
|
||||||
StudyTime = scpStudy.StudyTime,
|
StudyTime = scpStudy.StudyTime,
|
||||||
BodyPartExamined=scpStudy.BodyPartExamined,
|
BodyPartExamined=scpStudy.BodyPartExamined,
|
||||||
|
AccessionNumber=scpStudy.AccessionNumber,
|
||||||
|
|
||||||
PatientBirthDate=scpStudy.PatientBirthDate,
|
PatientBirthDate=scpStudy.PatientBirthDate,
|
||||||
PatientAge = scpStudy.PatientAge,
|
PatientAge = scpStudy.PatientAge,
|
||||||
|
|
|
@ -120,6 +120,12 @@ namespace IRaCIS.Core.Application.Service
|
||||||
.ForMember(d => d.TrialSiteName, u => u.MapFrom(s => s.TrialSite.TrialSiteName))
|
.ForMember(d => d.TrialSiteName, u => u.MapFrom(s => s.TrialSite.TrialSiteName))
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
CreateMap<SCPStudy, DicomStudy>();
|
||||||
|
CreateMap<SCPSeries, DicomSeries>();
|
||||||
|
CreateMap<SCPInstance, DicomInstance>();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue