zss
2024-07-26 ff4d45d57c3d1a1c8d4218dd83023cb7e4c34d7e
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());
    }
}