| | |
| | | |
| | | @ApiOperation(value = "获取项目检验参数列表") |
| | | @GetMapping("/selectItemParameterList") |
| | | public Result selectItemParameterList(Page page,StructureItemParameter itemParameter) throws Exception { |
| | | public Result selectItemParameterList(Page page,StructureItemParameter itemParameter) { |
| | | return Result.success(capacityScopeService.selectItemParameterList(page, itemParameter)); |
| | | } |
| | | |
| | |
| | | |
| | | @ApiOperation(value = "获取检验对象") |
| | | @GetMapping("/selectTestObjectList") |
| | | public Result selectTestObjectList(Page page,PageTestObjectDto pageTestObjectDto) throws Exception { |
| | | public Result selectTestObjectList(Page page,PageTestObjectDto pageTestObjectDto) { |
| | | return Result.success(capacityScopeService.selectTestObjectList(page, pageTestObjectDto)); |
| | | } |
| | | |
| | |
| | | |
| | | @ApiOperation(value = "维护检验对象的产品") |
| | | @GetMapping("/selectProductListByObjectId") |
| | | public Result selectProductListByObjectId(Page page,ProductDTO1 productDTO) throws Exception { |
| | | public Result selectProductListByObjectId(Page page,ProductDTO1 productDTO) { |
| | | return Result.success(productService.selectProductListByObjectId(page, productDTO)); |
| | | } |
| | | |