| | |
| | | return success(indItemApi.queryIndItemValuePage(dto)); |
| | | } |
| | | |
| | | @PermitAll |
| | | @PostMapping("/query-point-bad-history/page") |
| | | @Operation(summary = "根据计算点编号查询测点集合") |
| | | public CommonResult<PageResult<ApiPointBadHistoryDTO>> queryPointBadHistoryPage(@RequestBody ApiPointBadHistoryPageReqVO reqVO) { |
| | | PageResult<ApiPointBadHistoryDTO> data = dataPointApi.queryPointBadHistoryPage(reqVO); |
| | | return success(data); |
| | | } |
| | | |
| | | @PermitAll |
| | | @PostMapping("/query-point/count") |
| | | @Operation(summary = "根据计算点编号查询测点集合") |
| | | public CommonResult<String> getPointTotalCount(@RequestBody ApiPointCountReqVO reqVO) { |
| | | String count = dataPointApi.getPointTotalCount(reqVO); |
| | | return success(count); |
| | | } |
| | | |
| | | } |