修改参数类型

This commit is contained in:
liujing
2021-09-28 11:27:17 +08:00
parent cce7094ad4
commit 875170859d
6 changed files with 14 additions and 15 deletions

View File

@@ -41,6 +41,6 @@ public interface ICheckProvider extends IProvider {
/**
* 根据监测指标修改主页检测按钮
*/
void updateMonitoringStatus(String module, boolean hasError);
void updateMonitoringStatus(String module, Integer state);
}

View File

@@ -6,5 +6,5 @@ package com.mogo.eagle.core.function.api.check;
* @since: 8/26/21
*/
public interface IMogoCheckListener {
void updateMonitoringStatus(boolean hasError);
void updateMonitoringStatus(Integer state);
}