fix(sj_1.1.0-beta1): 修复[告警通知/通知场景]分页失效问题

This commit is contained in:
dhb52 2024-06-20 14:56:01 +08:00 committed by opensnail
parent aaae353a0b
commit 46f74c66a8

View File

@ -54,7 +54,7 @@ public class NotifyConfigServiceImpl implements NotifyConfigService {
@Override
public PageResult<List<NotifyConfigResponseVO>> getNotifyConfigList(NotifyConfigQueryVO queryVO) {
PageDTO<NotifyConfig> pageDTO = new PageDTO<>();
PageDTO<NotifyConfig> pageDTO = new PageDTO<>(queryVO.getPage(), queryVO.getSize());
List<String> groupNames = UserSessionUtils.getGroupNames(queryVO.getGroupName());
UserSessionVO userSessionVO = UserSessionUtils.currentUserSession();