| | |
| | | |
| | | @PostMapping(PREFIX + "/info/ids") |
| | | @Operation(summary = "根据多个测点ID查询测点信息") |
| | | List<ApiPointDTO> getInfoByIds(@RequestParam("pointNos") Set<String> pointIds); |
| | | List<ApiPointDTO> getInfoByIds(@RequestBody Set<String> pointIds); |
| | | |
| | | @PostMapping(PREFIX + "/query-points/real-value") |
| | | @Operation(summary = "查询多个测点当前值") |
| | |
| | | |
| | | @PostMapping(PREFIX + "/query-point/max-value") |
| | | @Operation(summary = "查询最大值") |
| | | Object queryPointMaxValue(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | Map<String, Object> queryPointMaxValue(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | |
| | | @PostMapping(PREFIX + "/query-point/max-time-value") |
| | | @Operation(summary = "查询最大值(带时间)") |
| | | Map<String, Object> queryPointMaxTimeValue(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | |
| | | @PostMapping(PREFIX + "/query-point/max-value-range") |
| | | @Operation(summary = "查询最大值") |
| | | Map<String, Object> queryPointMaxValueRange(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | |
| | | @PostMapping(PREFIX + "/query-point/min-value-range") |
| | | @Operation(summary = "查询最小值") |
| | | Map<String, Object> queryPointMinValueRange(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | |
| | | @PutMapping(PREFIX + "/write-point/real-value") |
| | | @Operation(summary = "写入单个测点值") |