zhongrj
2023-11-09 37d86ade1dccde5abfe62996ed0cec157435ebfa
src/main/java/org/springblade/modules/task/controller/TaskLabelReportingEventController.java
@@ -89,7 +89,7 @@
   @ApiOperationSupport(order = 4)
   @ApiOperation(value = "新增", notes = "传入taskLabelReportingEvent")
   public R save(@Valid @RequestBody TaskLabelReportingEventEntity taskLabelReportingEvent) {
      return R.status(taskLabelReportingEventService.save(taskLabelReportingEvent));
      return R.status(taskLabelReportingEventService.saveReportingEven(taskLabelReportingEvent));
   }
   /**
@@ -99,7 +99,7 @@
   @ApiOperationSupport(order = 5)
   @ApiOperation(value = "修改", notes = "传入taskLabelReportingEvent")
   public R update(@Valid @RequestBody TaskLabelReportingEventEntity taskLabelReportingEvent) {
      return R.status(taskLabelReportingEventService.updateById(taskLabelReportingEvent));
      return R.status(taskLabelReportingEventService.updateLabelReporting(taskLabelReportingEvent));
   }
   /**