| | |
| | | |
| | | @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 = "查询多个测点当前值") |
| | |
| | | @Operation(summary = "查询单个测点历史值") |
| | | List<ApiPointValueDTO> queryPointHistoryValue(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | |
| | | @PostMapping(PREFIX + "/query-point/max-value") |
| | | @Operation(summary = "查询最大值") |
| | | 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 = "写入单个测点值") |
| | | Boolean writePointRealValue(@RequestBody ApiPointValueWriteDTO queryDto); |
| | | |
| | | @GetMapping(PREFIX + "/query-math-point/current-value") |
| | | @PostMapping(PREFIX + "/query-math-point/current-value") |
| | | @Operation(summary = "根据计算点编号查询测点集合") |
| | | PageResult<ApiPointDTO> queryMathPointCurrentValue(@RequestBody ApiPointPageReqVO reqVO); |
| | | } |