From 46f74c66a8d6d9b853709888db2bc9a67f2256b1 Mon Sep 17 00:00:00 2001 From: dhb52 Date: Thu, 20 Jun 2024 14:56:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(sj=5F1.1.0-beta1):=20=E4=BF=AE=E5=A4=8D[?= =?UTF-8?q?=E5=91=8A=E8=AD=A6=E9=80=9A=E7=9F=A5/=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=E5=9C=BA=E6=99=AF]=E5=88=86=E9=A1=B5=E5=A4=B1=E6=95=88?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../server/web/service/impl/NotifyConfigServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snail-job-server/snail-job-server-web/src/main/java/com/aizuda/snailjob/server/web/service/impl/NotifyConfigServiceImpl.java b/snail-job-server/snail-job-server-web/src/main/java/com/aizuda/snailjob/server/web/service/impl/NotifyConfigServiceImpl.java index c8a43e0fd..50057c2c7 100644 --- a/snail-job-server/snail-job-server-web/src/main/java/com/aizuda/snailjob/server/web/service/impl/NotifyConfigServiceImpl.java +++ b/snail-job-server/snail-job-server-web/src/main/java/com/aizuda/snailjob/server/web/service/impl/NotifyConfigServiceImpl.java @@ -54,7 +54,7 @@ public class NotifyConfigServiceImpl implements NotifyConfigService { @Override public PageResult> getNotifyConfigList(NotifyConfigQueryVO queryVO) { - PageDTO pageDTO = new PageDTO<>(); + PageDTO pageDTO = new PageDTO<>(queryVO.getPage(), queryVO.getSize()); List groupNames = UserSessionUtils.getGroupNames(queryVO.getGroupName()); UserSessionVO userSessionVO = UserSessionUtils.currentUserSession();