| | |
| | | } |
| | | |
| | | @PostMapping ("maintenance") |
| | | @Operation(summary = "修改设备保养") |
| | | @Operation(summary = "确认设备保养") |
| | | public AjaxResult maintenance(@RequestBody DeviceMaintenanceDto deviceMaintenance) { |
| | | return deviceMaintenanceService.updateDeviceDeviceMaintenance(deviceMaintenance); |
| | | return deviceMaintenanceService.confirmMaintenance(deviceMaintenance); |
| | | } |
| | | |
| | | @PostMapping ("/acceptance") |
| | | @Operation(summary = "设备保养验收审批") |
| | | public AjaxResult acceptance(@RequestBody DeviceMaintenanceDto deviceMaintenance) { |
| | | return deviceMaintenanceService.approveMaintenanceAcceptance(deviceMaintenance); |
| | | } |
| | | |
| | | |