增加HtmlPath

IRC_NewDev
hang 2023-10-30 10:29:56 +08:00
parent 0451ef4190
commit 11c83759d2
6 changed files with 17 additions and 11 deletions

View File

@ -786,7 +786,7 @@ namespace IRaCIS.Core.API.Controllers
}
/// <summary>
/// New 项目入组 获取医生简历
/// New 项目入组 勾选获取简历路径
/// </summary>
/// <param name="command"></param>
/// <param name="_doctorService"></param>
@ -812,7 +812,7 @@ namespace IRaCIS.Core.API.Controllers
}
/// <summary>
/// new 医生详情 下载指定简历
/// new 医生详情 勾选或者下载文件路径
/// </summary>
/// <param name="command"></param>
/// <param name="_doctorService"></param>

View File

@ -293,7 +293,7 @@
</member>
<member name="M:IRaCIS.Core.API.Controllers.FileController.GetTrialDoctorOfficialResume(IRaCIS.Core.API.Controllers.GetDoctorPathCommand,IRaCIS.Application.Interfaces.IDoctorService,IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.Attachment})">
<summary>
New 项目入组 获取医生简历
New 项目入组 勾选获取简历路径
</summary>
<param name="command"></param>
<param name="_doctorService"></param>
@ -302,7 +302,7 @@
</member>
<member name="M:IRaCIS.Core.API.Controllers.FileController.GetDoctorAttachment(IRaCIS.Core.API.Controllers.GetDoctoreAttachPathCommand,IRaCIS.Application.Interfaces.IDoctorService,IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.Attachment})">
<summary>
new 医生详情 下载指定简历
new 医生详情 勾选或者下载文件路径
</summary>
<param name="command"></param>
<param name="_doctorService"></param>

View File

@ -1947,6 +1947,13 @@
<param name="inDto"></param>
<returns></returns>
</member>
<member name="M:IRaCIS.Core.Application.Service.ReadingCalculate.LuganoCalculateService.GetLastFDGPETOverallAssessment(IRaCIS.Core.Application.Service.Reading.Dto.ReadingCalculateDto)">
<summary>
获取上一次FDGPET 评估
</summary>
<param name="inDto"></param>
<returns></returns>
</member>
<member name="M:IRaCIS.Core.Application.Service.ReadingCalculate.LuganoCalculateService.GetFDGPETOverallAssessment(IRaCIS.Core.Application.Service.Reading.Dto.ReadingCalculateDto)">
<summary>
FDG-PET总体评估结果

View File

@ -197,8 +197,6 @@ namespace IRaCIS.Core.Application.Contracts
public bool IsDicomReUpload { get; set; }
public int FileCount { get; set; }
}
@ -312,6 +310,8 @@ namespace IRaCIS.Core.Application.Contracts
public string WindowWidth { get; set; }
public bool Anonymize { get; set; }
public string Path { get; set; }
public string Path { get; set; } = string.Empty;
public string HtmlPath { get; set; } = string.Empty;
}
}

View File

@ -217,6 +217,8 @@ namespace IRaCIS.Core.Application.Service.Third_partyProject
[FromServices] IRepository<DicomSeries> _dicomSeriesRepository,
[FromServices] IRepository<DicomInstance> _dicomInstanceRepository)
{
try
{
var trialId = incommand.TrialId;
@ -398,10 +400,6 @@ namespace IRaCIS.Core.Application.Service.Third_partyProject
return ResponseOutput.Ok();
}

View File

@ -53,6 +53,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid UpdateUserId { get; set; }
public DateTime UpdateTime { get; set; } = DateTime.Now;
public string HtmlPath { get; set; }=string.Empty;
}
}