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); }