From 6cc5e03ca3059c608b48a18720a37e8ebe1e22e5 Mon Sep 17 00:00:00 2001 From: DK Date: Mon, 28 Mar 2022 17:42:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../IRaCIS.Core.Application.xml | 21 +++++++++++++++++++ .../Service/Common/FrontAuditConfigService.cs | 17 +++++++++++++-- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index d4ba58346..2fc09022d 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -537,6 +537,27 @@ FrontAuditConfigService + + + 获取列表 + + + + + + + 新增或者修改 + + + + + + + 删除 + + + + 指定资源Id,渲染Dicom检查的Jpeg预览图像 Dicom检查的Id diff --git a/IRaCIS.Core.Application/Service/Common/FrontAuditConfigService.cs b/IRaCIS.Core.Application/Service/Common/FrontAuditConfigService.cs index 3f7127274..86f74fc99 100644 --- a/IRaCIS.Core.Application/Service/Common/FrontAuditConfigService.cs +++ b/IRaCIS.Core.Application/Service/Common/FrontAuditConfigService.cs @@ -26,7 +26,11 @@ namespace IRaCIS.Core.Application.Service _frontAuditConfigRepository = frontAuditConfigRepository; } - + /// + /// 获取列表 + /// + /// + /// public async Task> GetFrontAuditConfigList(FrontAuditConfigQuery iq) { var query = _repository.GetQueryable() @@ -45,6 +49,11 @@ namespace IRaCIS.Core.Application.Service } + /// + /// 新增或者修改 + /// + /// + /// public async Task AddOrUpdateFrontAuditConfig(FrontAuditConfigAddOrEdit addOrEditFrontAuditConfig) { // 在此处拷贝automapper 映射 @@ -60,7 +69,11 @@ namespace IRaCIS.Core.Application.Service } - + /// + /// 删除 + /// + /// + /// [HttpDelete("{frontAuditConfigId:guid}")] public async Task DeleteFrontAuditConfig(Guid frontAuditConfigId) {