liusheng
2024-02-27 e338114af5b96b3d7686ab9b424a9076b94611d3
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceDonateflowchartController.java
@@ -81,10 +81,11 @@
    @ApiOperation("新增捐献流程")
    //@PreAuthorize("@ss.hasPermi('system:donateflowchart:add')")
    @Log(title = "捐献流程", businessType = BusinessType.INSERT)
    @PostMapping
    @PostMapping("/add")
    @RepeatSubmit
    public AjaxResult add(@RequestBody ServiceDonateflowchart serviceDonateflowchart) {
        return toAjax(serviceDonateflowchartService.save(serviceDonateflowchart));
        boolean save = serviceDonateflowchartService.save(serviceDonateflowchart);
        return AjaxResult.success(serviceDonateflowchart);
    }
    /**