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