晏有为
2024-05-27 d91f76b90245603c1c7f08e3d5864ada3f3fbba7
inspect-server/src/main/java/com/yuanchu/mom/controller/StandardTemplateController.java
@@ -62,4 +62,11 @@
        return Result.success(standardTemplateService.getStandTempThingById(id));
    }
    @ValueAuth
    @ApiOperation(value = "编辑模板编制")
    @GetMapping("/getEditTemplatePreparation")
    public Result<?> getEditTemplatePreparation(@RequestParam("id") Integer id) {
        StandardTemplate byId = standardTemplateService.getById(id);
        return Result.success("OK", byId.getThing());
    }
}