chenrui
2025-04-08 de0494d7a6f99f50fa33b9487dd2ffefca82e8b6
basic-server/src/main/java/com/ruoyi/basic/controller/StandardTreeController.java
@@ -79,8 +79,8 @@
    @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 = "通过标准树查询对应的检验项目")
@@ -222,7 +222,7 @@
    @ApiOperation(value = "删除厂家要求值绑定")
    @DeleteMapping("/deleteProductSupplierAsk")
    public Result deleteProductSupplierAsk(Integer supplierAskId) {
        standardProductListSupplierAskService.removeById(supplierAskId);
        standardProductListSupplierAskService.deleteProductSupplierAsk(supplierAskId);
        return Result.success();
    }
@@ -277,7 +277,7 @@
    }
    @ApiOperation("查询标准库是否存在审核中状态")
    @GetMapping("/productListCheck")
    @GetMapping("/existCheckingRecord")
    public Result existCheckingRecord(){
        return Result.success(standardProductListService.existCheckingRecord());
    }