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); } /**