From 1b40f5b3da2b6fe7c390e5877199717a9983cdc3 Mon Sep 17 00:00:00 2001 From: ndbs Date: Mon, 22 Apr 2024 16:02:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=B9=E6=AC=A1=E8=A1=A5=E5=8A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../StudentWork/SW_Ask_Batch/SW_Ask_BatchService.cs | 2 +- .../StudentWork/SW_Ask_NotHaveAll/SW_Ask_NotHaveAllService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/StudentWork/SW_Ask_Batch/SW_Ask_BatchService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/StudentWork/SW_Ask_Batch/SW_Ask_BatchService.cs index f08b40dae..062f6dda3 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/StudentWork/SW_Ask_Batch/SW_Ask_BatchService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/StudentWork/SW_Ask_Batch/SW_Ask_BatchService.cs @@ -76,7 +76,7 @@ namespace Learun.Application.TwoDevelopment.StudentWork dp.Add("keyword", "%" + queryParam["keyword"].ToString() + "%", DbType.String); strSql.Append(" and (t.BName like @keyword or t.BSerial like @keyword)"); } - return this.BaseRepository().FindList(strSql.ToString(), pagination); + return this.BaseRepository().FindList(strSql.ToString(),dp, pagination); } catch (Exception ex) { diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/StudentWork/SW_Ask_NotHaveAll/SW_Ask_NotHaveAllService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/StudentWork/SW_Ask_NotHaveAll/SW_Ask_NotHaveAllService.cs index 7385f73f6..005946e97 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/StudentWork/SW_Ask_NotHaveAll/SW_Ask_NotHaveAllService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/StudentWork/SW_Ask_NotHaveAll/SW_Ask_NotHaveAllService.cs @@ -89,7 +89,7 @@ namespace Learun.Application.TwoDevelopment.StudentWork dp.Add("keyword", "%" + queryParam["keyword"].ToString() + "%", DbType.String); strSql.Append(" and (t.GName like @keyword or t.GSerial like @keyword)"); } - return this.BaseRepository().FindList(strSql.ToString(), pagination); + return this.BaseRepository().FindList(strSql.ToString(), dp, pagination); } catch (Exception ex) {