diff --git a/IRaCIS.Core.API/Controllers/UploadDownLoadController.cs b/IRaCIS.Core.API/Controllers/UploadDownLoadController.cs
index aa4d6a673..40ee6fe3f 100644
--- a/IRaCIS.Core.API/Controllers/UploadDownLoadController.cs
+++ b/IRaCIS.Core.API/Controllers/UploadDownLoadController.cs
@@ -889,89 +889,6 @@ namespace IRaCIS.Core.API.Controllers
- #region 废弃
-
- ///
- /// 下载多个医生的所有附件
- ///
- ///
- ///
- [Obsolete]
- [HttpPost, Route("file/downloadDoctorAttachments")]
- public async Task> DownloadAttachment(Guid[] doctorIds)
- {
-
- var path = await _fileService.CreateDoctorsAllAttachmentZip(doctorIds);
-
- return ResponseOutput.Ok(new UploadFileInfoDTO
- {
- FilePath = path,
- FullFilePath = path + "?access_token=" + HttpContext.Request.Headers["Authorization"].ToString().Substring(7)
-
- });
- }
-
- ///
- /// 下载指定医生的指定附件
- ///
- /// 医生Id
- /// 要下载的附件Id
- ///
- [HttpPost, Route("file/downloadByAttachmentId/{doctorId}")]
- [Obsolete]
- public async Task> DownloadAttachmentById(Guid doctorId, Guid[] attachmentIds)
- {
- var path = await _fileService.CreateZipPackageByAttachment(doctorId, attachmentIds);
- return ResponseOutput.Ok(new UploadFileInfoDTO
- {
- FilePath = await _fileService.CreateZipPackageByAttachment(doctorId, attachmentIds),
- FullFilePath = path + "?access_token=" + HttpContext.Request.Headers["Authorization"].ToString().Substring(7)
- });
- }
-
-
- ///
- /// 下载医生官方简历 首页 区分 中文和英文
- ///
- ///
- ///
- ///
- [HttpPost, Route("file/downloadOfficialCV/{language}")]
- [Obsolete]
- public async Task> DownloadOfficialResume(int language, Guid[] doctorIds)
- {
-
- var path = await _fileService.CreateDoctorsAllAttachmentZip(doctorIds);
- return ResponseOutput.Ok(new UploadFileInfoDTO
- {
- FilePath = await _fileService.CreateOfficialResumeZip(language, doctorIds),
- FullFilePath = path + "?access_token=" + HttpContext.Request.Headers["Authorization"].ToString().Substring(7)
- });
- }
-
-
-
-
- ///
- /// 入组 项目下载简历
- ///
- ///
- ///
- ///
- ///
- [HttpPost, Route("enroll/downloadResume/{trialId:guid}/{language}")]
- [TypeFilter(typeof(TrialResourceFilter), Arguments = new object[] { "AfterStopCannNotOpt" })]
- [AllowAnonymous]
- [Obsolete]
- public async Task> DownloadResume(int language, Guid trialId, Guid[] doctorIdArray)
- {
- var zipPath = await _fileService.CreateOfficialResumeZip(language, doctorIdArray);
-
- return ResponseOutput.Ok(zipPath);
- }
- #endregion
-
-
}
#endregion
diff --git a/IRaCIS.Core.API/IRaCIS.Core.API.xml b/IRaCIS.Core.API/IRaCIS.Core.API.xml
index 726d34a48..d82437315 100644
--- a/IRaCIS.Core.API/IRaCIS.Core.API.xml
+++ b/IRaCIS.Core.API/IRaCIS.Core.API.xml
@@ -326,38 +326,6 @@
-
-
- 下载多个医生的所有附件
-
-
-
-
-
-
- 下载指定医生的指定附件
-
- 医生Id
- 要下载的附件Id
-
-
-
-
- 下载医生官方简历 首页 区分 中文和英文
-
-
-
-
-
-
-
- 入组 项目下载简历
-
-
-
-
-
-
通用文件下载