| | |
| | | @Operation(summary = "查询单个测点历史值") |
| | | List<ApiPointValueDTO> queryPointHistoryValue(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | |
| | | @PostMapping(PREFIX + "/query-point/max-value") |
| | | @Operation(summary = "查询最大值") |
| | | Object queryPointMaxValue(@RequestBody ApiPointValueQueryDTO queryDto); |
| | | |
| | | @PutMapping(PREFIX + "/write-point/real-value") |
| | | @Operation(summary = "写入单个测点值") |
| | | Boolean writePointRealValue(@RequestBody ApiPointValueWriteDTO queryDto); |
| | | |
| | | @GetMapping(PREFIX + "/info/nos/{pointNo}") |
| | | @PostMapping(PREFIX + "/query-math-point/current-value") |
| | | @Operation(summary = "根据计算点编号查询测点集合") |
| | | PageResult<ApiPointDTO> getPageByNo(@PathVariable("pointNo") String pointNo); |
| | | PageResult<ApiPointDTO> queryMathPointCurrentValue(@RequestBody ApiPointPageReqVO reqVO); |
| | | } |