liusheng
2024-05-16 2f13f59f023fba63aa993172d48c14bcaaafb233
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/BaseExpertfeetypeController.java
@@ -80,11 +80,13 @@
     */
    @ApiOperation("新增专家费用")
    @Log(title = "专家费用", businessType = BusinessType.INSERT)
    @PostMapping
    @PostMapping("/add")
    @RepeatSubmit
    public AjaxResult add(@RequestBody BaseExpertfeetype baseExpertfeetype) {
        log.info("新增专家费用{}:", baseExpertfeetype);
        return toAjax(baseExpertfeetypeService.save(baseExpertfeetype));
        boolean save = baseExpertfeetypeService.save(baseExpertfeetype);
        log.info("返回的baseExpertfeetype的id:{}:", baseExpertfeetype.getId());
        return AjaxResult.success(baseExpertfeetype);
    }
    /**