| | |
| | | */ |
| | | @ApiOperation("新增专家费用分发汇总明细") |
| | | @Log(title = "专家费用分发汇总明细", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @PostMapping("/add") |
| | | @RepeatSubmit |
| | | public AjaxResult add(@RequestBody ServiceDistributedetail serviceDistributedetail) { |
| | | log.info("新增专家费用分发汇总明细:{}", serviceDistributedetail); |
| | | return toAjax(serviceDistributedetailService.save(serviceDistributedetail)); |
| | | boolean save = serviceDistributedetailService.save(serviceDistributedetail); |
| | | log.info("新增专家费用分发汇总明细serviceDistributedetail的id:{}", serviceDistributedetail.getId()); |
| | | return AjaxResult.success(serviceDistributedetail); |
| | | } |
| | | |
| | | /** |