未验证 提交 1d4076fb 编写于 作者: K Kerwin 提交者: GitHub

Fix the parameter format error when the alarm instance is being edited. (#7199)

上级 e769bbf1
......@@ -199,9 +199,9 @@ public class AlertPluginInstanceServiceImpl extends BaseServiceImpl implements A
Page<AlertPluginInstance> page = new Page<>(pageNo, pageSize);
IPage<AlertPluginInstance> alertPluginInstanceIPage = alertPluginInstanceMapper.queryByInstanceNamePage(page, searchVal);
PageInfo<AlertPluginInstance> pageInfo = new PageInfo<>(pageNo, pageSize);
PageInfo<AlertPluginInstanceVO> pageInfo = new PageInfo<>(pageNo, pageSize);
pageInfo.setTotal((int) alertPluginInstanceIPage.getTotal());
pageInfo.setTotalList(alertPluginInstanceIPage.getRecords());
pageInfo.setTotalList(buildPluginInstanceVOList(alertPluginInstanceIPage.getRecords()));
result.setData(pageInfo);
putMsg(result, Status.SUCCESS);
return result;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册