| | |
| | | |
| | | @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(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 = "写入单个测点值") |
| | |
| | | @PostMapping(PREFIX + "/query-math-point/current-value") |
| | | @Operation(summary = "根据计算点编号查询测点集合") |
| | | PageResult<ApiPointDTO> queryMathPointCurrentValue(@RequestBody ApiPointPageReqVO reqVO); |
| | | } |
| | | |
| | | @PostMapping(PREFIX + "/query-point-bad-history/page") |
| | | @Operation(summary = "查询测点异常历史分页") |
| | | PageResult<ApiPointBadHistoryDTO> queryPointBadHistoryPage(@RequestBody ApiPointBadHistoryPageReqVO reqVO); |
| | | |
| | | @PostMapping(PREFIX + "/query-point/count") |
| | | @Operation(summary = "获取点位个数") |
| | | String getPointTotalCount(@RequestBody ApiPointCountReqVO reqVO); |
| | | } |