From f0971fd6dce69dbec72e5415e4f0dbbdb9554c59 Mon Sep 17 00:00:00 2001 From: "DESKTOP-G961P6V\\Zhh" <839860190@qq.com> Date: Tue, 14 May 2024 00:01:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ImportLisResults/ImportLisResultAppService.cs | 5 ++++- .../ImportPacsResults/ImportPacsResultAppService.cs | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs b/src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs index 6a0a456..cf34a79 100644 --- a/src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs +++ b/src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs @@ -1,4 +1,5 @@ -using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using NPOI.SS.Formula.Functions; using NPOI.Util; @@ -26,6 +27,8 @@ using Volo.Abp.Users; namespace Shentun.Peis.ImportLisResults { + [ApiExplorerSettings(GroupName = "Work")] + [Authorize] public class ImportLisResultAppService : ApplicationService, IImportLisResultAppService { private readonly IRepository _registerCheckItemRepository; diff --git a/src/Shentun.Peis.Application/ImportPacsResults/ImportPacsResultAppService.cs b/src/Shentun.Peis.Application/ImportPacsResults/ImportPacsResultAppService.cs index b775249..e75ec71 100644 --- a/src/Shentun.Peis.Application/ImportPacsResults/ImportPacsResultAppService.cs +++ b/src/Shentun.Peis.Application/ImportPacsResults/ImportPacsResultAppService.cs @@ -1,4 +1,5 @@ -using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using NPOI.SS.Formula.Functions; using NUglify.Helpers; @@ -26,6 +27,8 @@ using Volo.Abp.Users; namespace Shentun.Peis.ImportPacsResults { + [ApiExplorerSettings(GroupName = "Work")] + [Authorize] public class ImportPacsResultAppService : ApplicationService { private readonly IRepository _registerCheckItemRepository;