zss
2025-03-06 934f0bc7c1f73674fbbfd2301425a14087c09eac
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));
    }