chenrui
2025-03-11 379222715511cc4d6efd4abbbb3463f5485f590d
basic-server/src/main/java/com/ruoyi/basic/controller/StandardTreeController.java
@@ -105,8 +105,11 @@
    }
    @ApiOperation(value = "通过检验标准查询检验项目")
    @GetMapping("/selectStandardProductListByMethodId")
    public Result selectStandardProductListByMethodId(Integer id, String tree, Integer page) {
    @PostMapping("/selectStandardProductListByMethodId")
    public Result selectStandardProductListByMethodId(@RequestBody Map<String,Object> map ) {
        Integer id =(Integer) map.get("id");
        String tree = (String)map.get("tree");
        Integer page = (Integer)map.get("page");
        return Result.success(standardProductListService.selectStandardProductListByMethodId(id, tree, page));
    }