Authored by qinchao

添加方法

... ... @@ -64,6 +64,12 @@ public class RabbitMonitorCtrl {
return response;
}
@RequestMapping(value = "/allRabbitMqInMap")
public BaseResponse allRabbitMqInMap(RabbitInfoReq request) {
BaseResponse response = httpRestClient.defaultPost("/middleware/rabbitmq/allRabbitMqInMap", request, BaseResponse.class);
return response;
}
@RequestMapping(value = "/fixAlertHigh")
public BaseResponse fixAlertHigh(RabbitAlertReq request) {
BaseResponse response = httpRestClient.defaultPost("/middleware/rabbitmq/fixAlertHigh", request, BaseResponse.class);
... ...