| | |
| | | } |
| | | |
| | | @PermitAll |
| | | @PostMapping("/query-points/info") |
| | | @PostMapping("/query-math-point/current-value") |
| | | @Operation(summary = "根据计算点编号查询测点集合") |
| | | public CommonResult<PageResult<ApiPointDTO>> queryPageByNo(@RequestBody ApiPointPageReqVO reqVO) { |
| | | PageResult<ApiPointDTO> data = dataPointApi.getPageByNo(reqVO); |
| | | public CommonResult<PageResult<ApiPointDTO>> queryMathPointCurrentValue(@RequestBody ApiPointPageReqVO reqVO) { |
| | | PageResult<ApiPointDTO> data = dataPointApi.queryMathPointCurrentValue(reqVO); |
| | | return success(data); |
| | | } |
| | | |