| | |
| | | |
| | | @ApiOperation("查询电源的ACDC信息") |
| | | @GetMapping("/getDataByDevId") |
| | | private Response getDataByDevId(@RequestParam int powerDeviceId){ |
| | | public Response getDataByDevId(@RequestParam int powerDeviceId){ |
| | | return service.getDataByDevId(powerDeviceId); |
| | | } |
| | | |
| | | @ApiOperation("获取配电柜的实时数据") |
| | | @GetMapping("/getPowerInfoById") |
| | | private Response getPowerInfoById(@RequestParam int powerDeviceId){ |
| | | public Response getPowerInfoById(@RequestParam int powerDeviceId){ |
| | | return service.getPowerInfoById(powerDeviceId); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-高频开关配电柜遥测量/交流配电柜遥测量",value = "实时查询",notes = "这是个描述性接口,请通过ws协议调用!具体ws接口为:/fg/powerRT,发送信息:'910000001'") |
| | | @GetMapping("/powerRT") |
| | | private Response getPowerRT(){ |
| | | public Response getPowerRT(){ |
| | | return new Response().setII(1,"这是个描述性接口,请通过ws协议调用!具体ws接口为:/fg/powerRT"); |
| | | } |
| | | } |