zss
2024-06-21 a3b6c33ffef0db2d67102edf2b56c78a1d2e551d
inspect-server/src/main/java/com/yuanchu/mom/controller/StandardTreeController.java
@@ -161,4 +161,20 @@
        standardTreeService.inExcelOfTree(file);
        return Result.success();
    }
    @ValueAuth
    @ApiOperation("重置标准库单价")
    @PostMapping("/resetTreeOfPrice")
    public Result resetTreeOfPrice(String tree, Integer standardId){
        standardTreeService.resetTreeOfPrice(tree, standardId);
        return Result.success();
    }
    @ValueAuth
    @ApiOperation("重置标准库工时系数")
    @PostMapping("/resetTreeOfHour")
    public Result resetTreeOfHour(String tree, Integer standardId){
        standardTreeService.resetTreeOfHour(tree, standardId);
        return Result.success();
    }
}