| | |
| | | |
| | | @ApiOperation(value = "获取原始记录模板列表") |
| | | @GetMapping("/selectStandardTemplatePageList") |
| | | public Result selectStandardTemplatePageList(Page page,StandardTemplate standardTemplate) throws Exception { |
| | | public Result selectStandardTemplatePageList(Page page,StandardTemplate standardTemplate){ |
| | | return Result.success(standardTemplateService.selectStandardTemplatePageList(page, standardTemplate)); |
| | | } |
| | | |
| | |
| | | @GetMapping("/getEditTemplatePreparation") |
| | | public Result<?> getEditTemplatePreparation(@RequestParam("id") Integer id) { |
| | | StandardTemplate byId = standardTemplateService.getById(id); |
| | | return Result.success("OK", byId.getThing()); |
| | | return Result.success(byId.getThing()); |
| | | } |
| | | |
| | | @ApiOperation(value = "复制原始记录模板") |