From 732e01170b8e8195aee472c988a975a2992ef893 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Tue, 17 May 2022 10:16:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Document/SystemDocumentService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs b/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs index 0bf0bc959..2ee9e9143 100644 --- a/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs +++ b/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs @@ -119,7 +119,7 @@ namespace IRaCIS.Core.Application.Services return ResponseOutput.NotOk("该文档下已有签名的用户"); } - var success = await _systemDocumentRepository.DeleteFromQueryAsync(t => t.Id == systemDocumentId,true); + var success = await _systemDocumentRepository.DeleteFromQueryAsync(t => t.Id == systemDocumentId,true,true); return ResponseOutput.Result(true); }