| | |
| | | @ApiOperationSupport(order = 4) |
| | | @ApiOperation(value = "新增", notes = "传入taskBailReportingEvent") |
| | | public R save(@Valid @RequestBody TaskBailReportingEventEntity taskBailReportingEvent) { |
| | | return R.status(taskBailReportingEventService.save(taskBailReportingEvent)); |
| | | return R.status(taskBailReportingEventService.saveBailReporting(taskBailReportingEvent)); |
| | | } |
| | | |
| | | /** |
| | |
| | | @ApiOperationSupport(order = 5) |
| | | @ApiOperation(value = "修改", notes = "传入taskBailReportingEvent") |
| | | public R update(@Valid @RequestBody TaskBailReportingEventEntity taskBailReportingEvent) { |
| | | return R.status(taskBailReportingEventService.updateById(taskBailReportingEvent)); |
| | | return R.status(taskBailReportingEventService.updateBailReporting(taskBailReportingEvent)); |
| | | } |
| | | |
| | | /** |