| | |
| | | |
| | | @ApiOperation(value = "删除标准树的层级") |
| | | @DeleteMapping("/delStandardTree") |
| | | public Result delStandardTree(String tree) { |
| | | return Result.success(standardTreeService.delStandardTree(tree)); |
| | | public Result delStandardTree(String level, String id) { |
| | | return Result.success(standardTreeService.delStandardTree(level,id)); |
| | | } |
| | | |
| | | @ApiOperation(value = "通过标准树查询对应的检验项目") |
| | |
| | | @ApiOperation(value = "删除厂家要求值绑定") |
| | | @DeleteMapping("/deleteProductSupplierAsk") |
| | | public Result deleteProductSupplierAsk(Integer supplierAskId) { |
| | | standardProductListSupplierAskService.removeById(supplierAskId); |
| | | standardProductListSupplierAskService.deleteProductSupplierAsk(supplierAskId); |
| | | return Result.success(); |
| | | } |
| | | |