| | |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @RestController |
| | | @RequestMapping("afeInverter") |
| | | @Api(tags = "afe变频器-逆变器的数据信息") |
| | |
| | | return service.getInfoByDeviceId(devId); |
| | | } |
| | | |
| | | @GetMapping("field") |
| | | @ApiOperation(value = "查询告警阈值字段") |
| | | public Response<Map<String, List>> getField(){ |
| | | return service.getField(); |
| | | } |
| | | |
| | | @GetMapping("tableNames") |
| | | @ApiOperation(value = "查询历史记录存在的表") |
| | | public Response<String> getTableNames(){ |