From 6fded9f028eb0b7dc7af5cc0dcb97c6e458ce85e Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Tue, 15 Apr 2025 17:23:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Document/SystemDocumentService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs b/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs index 594e8d75f..d277aa622 100644 --- a/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs +++ b/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs @@ -32,6 +32,7 @@ namespace IRaCIS.Core.Application.Services var systemDocumentAttachmentQueryable = _systemDocumentAttachmentRepository .WhereIf(inQuery.SystemDocumentId != null, t => t.SystemDocumentId == inQuery.SystemDocumentId) + .WhereIf(inQuery.OffLine != null, t => t.OffLine == inQuery.OffLine) .WhereIf(inQuery.FileName != null, t => t.FileName == inQuery.FileName) .WhereIf(inQuery.FileFormat != null, t => t.FileFormat == inQuery.FileFormat) .ProjectTo(_mapper.ConfigurationProvider);