| | |
| | | */ |
| | | @PostMapping("/disposalAccept") |
| | | @ApiOperationSupport(order = 7) |
| | | @ApiOperation(value = "逻辑删除", notes = "传入ids") |
| | | @ApiOperation(value = "处置(生成维修工单)", notes = "传入eventgm") |
| | | public R disposalAccept(@RequestBody EventgmEntity eventgm) { |
| | | return R.status(eventgmService.disposalAccept(eventgm)); |
| | | } |
| | |
| | | */ |
| | | @PostMapping("/disposalRefuse") |
| | | @ApiOperationSupport(order = 7) |
| | | @ApiOperation(value = "逻辑删除", notes = "传入ids") |
| | | @ApiOperation(value = "处置(拒绝)", notes = "传入eventgm") |
| | | public R disposalRefuse(@RequestBody EventgmEntity eventgm) { |
| | | return R.status(eventgmService.disposalRefuse(eventgm)); |
| | | } |