Crunchy
2024-05-23 9179b603654021eabf0cf0039440670f29cb51a0
inspect-server/src/main/java/com/yuanchu/mom/controller/StandardTemplateController.java
@@ -62,4 +62,11 @@
        return Result.success(standardTemplateService.getStandTempThingById(id));
    }
    @ApiOperation(value = "编辑模板编制")
    @GetMapping("/getEditTemplatePreparation")
    @ValueClassify("标准库")
    public Result<?> getEditTemplatePreparation(@RequestParam("id") Integer id) {
        StandardTemplate byId = standardTemplateService.getById(id);
        return Result.success("OK", byId.getThing());
    }
}