| | |
| | | return Result.success(standardMethodListService.selectStandardMethodEnum()); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取产品架构") |
| | | @ApiOperation(value = "获取检验对象架构树") |
| | | @GetMapping("/getStandardTree2") |
| | | public Result getStandardTree2() { |
| | | return Result.success(standardTreeService.getStandardTree2()); |
| | |
| | | return Result.success(); |
| | | } |
| | | |
| | | @ApiOperation(value = "修改标准树") |
| | | @ApiOperation(value = "修改型号") |
| | | @PostMapping("/updateStandardTree") |
| | | public Result updateStandardTree(@RequestBody StandardTree standardTree) { |
| | | return Result.success(standardTreeService.updateStandardTree(standardTree)); |
| | | public Result updateStandardTree(@RequestBody ModelAddDto modelAddDto) { |
| | | return Result.success(standardTreeService.updateStandardTree(modelAddDto)); |
| | | } |
| | | |
| | | @ApiOperation(value = "检验项要求值复制对比") |