liusheng
2024-03-19 519886a70d630e3cdd6c0f40f55fcebc6e780dc5
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceExpertexpenseController.java
@@ -80,11 +80,12 @@
     */
    @ApiOperation("新增费用申请主")
    @Log(title = "费用申请主", businessType = BusinessType.INSERT)
    @PostMapping
    @PostMapping("/add")
    @NotRepeatCommit(key = "param:arg[1]", value = 30000)
    public AjaxResult add(@RequestBody ServiceExpertexpense serviceExpertexpense)
    {
        return toAjax(serviceExpertexpenseService.save(serviceExpertexpense));
        boolean save = serviceExpertexpenseService.save(serviceExpertexpense);
        return AjaxResult.success(serviceExpertexpense);
    }
    /**