yxh
2025-06-03 9c8c30d9ead02243a0cc3807fe6d47df9a6b51af
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);
    }
    /**