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) {