| | |
| | | }) |
| | | @PostMapping("/submitInspection") |
| | | public Result submitInspection(String inspectionId) { |
| | | return Result.success(inspectionService.subInspectionByInsId(inspectionId)); |
| | | inspectionService.subInspectionByInsId(inspectionId); |
| | | return Result.success(); |
| | | } |
| | | |
| | | @ApiOperation("作废检验单申请") |
| | |
| | | }) |
| | | @PostMapping("/delInspection") |
| | | public Result delInspection(String inspectionId) { |
| | | return Result.success(inspectionService.delInspectionByInsId(inspectionId)); |
| | | inspectionService.delInspectionByInsId(inspectionId); |
| | | return Result.success(); |
| | | } |
| | | } |