| | |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "设备报废申请列表") |
| | | @PostMapping("/pageDeviceScrapped") |
| | | @GetMapping("/pageDeviceScrapped") |
| | | public Result<IPage<DeviceScrapped>> pageDeviceScrapped(Page page, DeviceScrapped deviceScrapped) { |
| | | return Result.success(deviceScrappedService.pageDeviceScrapped(page, deviceScrapped)); |
| | | } |
| | |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "删除设备报废申请") |
| | | @GetMapping("/delDeviceScrapped") |
| | | @DeleteMapping("/delDeviceScrapped") |
| | | public Result delDeviceScrapped(Integer scrappedId){ |
| | | return Result.success(deviceScrappedService.removeById(scrappedId)); |
| | | } |