From df0f50187eb5f7682f13981c04786653587b8c56 Mon Sep 17 00:00:00 2001 From: "{872297557@qq.com}" <872297557@qq.com> Date: Mon, 9 Jan 2023 10:40:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AD=BE=E7=BD=B2=E6=96=87=E6=A1=A3=E5=9B=BD?= =?UTF-8?q?=E9=99=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Document/SystemDocumentService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs b/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs index ee28f4d4..2f40f256 100644 --- a/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs +++ b/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs @@ -128,7 +128,7 @@ namespace IRaCIS.Core.Application.Services /// /// [HttpPost] - public async Task> GetWaitSignSysDocList(SystemDocumentQuery querySystemDocument) + public async Task> getWaitSignSysDocList(SystemDocumentQuery querySystemDocument) { var query = from sysDoc in _systemDocumentRepository.Where(t => t.NeedConfirmedUserTypeList.Any(t => t.NeedConfirmUserTypeId == _userInfo.UserTypeId)) .WhereIf(!string.IsNullOrEmpty(querySystemDocument.Name), t => t.Name.Contains(querySystemDocument.Name)) @@ -148,7 +148,7 @@ namespace IRaCIS.Core.Application.Services SignViewMinimumMinutes = sysDoc.SignViewMinimumMinutes, Name = sysDoc.Name, Path = sysDoc.Path, - FileType = sysDoc.FileType.Value, + FileType = sysDoc.FileType.MappedValue, UpdateTime = sysDoc.UpdateTime, FullFilePath = sysDoc.Path + "?access_token=" + _userInfo.UserToken,