| | |
| | | public JSONObject exportThirdMaintenanceOrderBaseInfo(@RequestParam(name = "id", required = true) String id) { |
| | | return eamThirdMaintenanceOrderService.exportThirdMaintenanceOrderBaseInfo(id); |
| | | } |
| | | |
| | | /** |
| | | * 批量加工设备三级保养完工移交单 |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备三级保养-加工设备三级保养完工移交单") |
| | | @ApiOperation(value = "设备三级保养-加工设备三级保养完工移交单", notes = "设备三级保养-加工设备三级保养完工移交单") |
| | | @GetMapping(value = "/batchExport") |
| | | public Result<?> export(String ids){ |
| | | return Result.ok(eamThirdMaintenanceOrderService.export(ids)); |
| | | } |
| | | |
| | | /** |
| | | * 批量加工设备三级保养验收单 |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备三级保养-加工设备三级保养验收单") |
| | | @ApiOperation(value = "设备三级保养-加工设备三级保养验收单", notes = "设备三级保养-加工设备三级保养验收单") |
| | | @GetMapping(value = "/batchExportCheck") |
| | | public Result<?> exportCheck(String ids) { |
| | | return Result.ok(eamThirdMaintenanceOrderService.exportAcceptance(ids)); |
| | | } |
| | | } |