zhongrj
2023-11-09 868f10bcaa907e86be23afdd101038628cafb4fe
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));
   }
   /**