Commit 5cba4d07 authored by duanruiming's avatar duanruiming

[update] 信号服务查询列表

parent 539d5509
......@@ -7,6 +7,7 @@ import net.wanji.common.enums.BaseEnum;
import net.wanji.common.framework.rest.JsonViewObject;
import net.wanji.databus.vo.CrossDeviceStatusInfoOutVO;
import net.wanji.web.service.SituationDetectionService;
import net.wanji.web.task.SystemServiceStatusTask;
import net.wanji.web.vo.situationDetection.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
......@@ -235,4 +236,13 @@ public class SituationDetectionController extends BaseController {
return jsonViewObject.success(result);
}
@AspectLog(description = "信号服务", operationType = BaseEnum.OperationTypeEnum.QUERY)
@ApiOperation(value = "信号服务", notes = "信号服务")
@GetMapping("/signalService")
public JsonViewObject signalService() throws Exception {
JsonViewObject jsonViewObject = JsonViewObject.newInstance();
return jsonViewObject.success(SystemServiceStatusTask.sysList);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment