修改
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-04-15 17:23:45 +08:00
parent b5103f1940
commit 6fded9f028
1 changed files with 1 additions and 0 deletions

View File

@ -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<SystemDocumentAttachmentView>(_mapper.ConfigurationProvider);