From 6f2fc08110673602a8e1ec7c50d587044b93ffa5 Mon Sep 17 00:00:00 2001 From: wtp <1813748440@qq.com> Date: Mon, 13 Mar 2023 15:35:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=8A=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GDZZ.Application/Service/MiniResume/MiniResumeService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GDZZ.Application/Service/MiniResume/MiniResumeService.cs b/GDZZ.Application/Service/MiniResume/MiniResumeService.cs index ec05214..090d106 100644 --- a/GDZZ.Application/Service/MiniResume/MiniResumeService.cs +++ b/GDZZ.Application/Service/MiniResume/MiniResumeService.cs @@ -71,7 +71,7 @@ namespace GDZZ.Application var entities = await _rep.AsQueryable() .LeftJoin((u, y) => u.CompanyID == y.Id) //关联公司信息 - .Where(u=>u.CompanyID == input.CompanyID) + .Where(u => u.CompanyID == input.CompanyID) .Select((u, y) => new MiniResumeOutput { CompanyID = y.Id, @@ -87,7 +87,7 @@ namespace GDZZ.Application Record = u.Record, Level = u.Level, }).MergeTable() - .ToPagedListAsync(input.PageNo, input.PageSize); + .ToListAsync(); return entities; }