罗媛媛
2024-04-01 edbb9450c78019e7cea4bfb0d0496782e90a4a43
inspect-server/src/main/java/com/yuanchu/mom/controller/StandardTreeController.java
@@ -92,4 +92,18 @@
        return Result.success(standardProductListService.selectStandardProductList(insSample));
    }
    @ApiOperation(value = "通过检验标准查询检验项目")
    @PostMapping("/selectStandardProductListByMethodId")
    @ValueAuth
    public Result selectStandardProductListByMethodId(Integer id){
        return Result.success(standardProductListService.selectStandardProductListByMethodId(id));
    }
    @ApiOperation(value = "获取标准树下标准方法枚举")
    @GetMapping("/selectStandardMethodEnum")
    @ValueAuth
    public Result selectStandardMethodEnum(){
        return Result.success(standardMethodListService.selectStandardMethodEnum());
    }
}