| | |
| | | @Operation(summary = "查询多个测点历史值") |
| | | Map<String, List<Map<String, Object>>> queryPointsHistoryValue(@RequestBody ApiPointsValueQueryDTO queryDto); |
| | | |
| | | @GetMapping(PREFIX + "/query-point/history-value") |
| | | @PostMapping(PREFIX + "/query-point/history-value") |
| | | @Operation(summary = "查询单个测点历史值") |
| | | List<ApiPointValueDTO> queryPointHistoryValue(@RequestParam ApiPointValueQueryDTO queryDto); |
| | | List<ApiPointValueDTO> queryPointHistoryValue(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | |
| | | @PutMapping(PREFIX + "/write-point/real-value") |
| | | @Operation(summary = "写入单个测点值") |