| | |
| | | |
| | | } |
| | | |
| | | @ApiOperation("APP质检审核查询接口") |
| | | @SaCheckPermission("qualityInspectionReview.search") |
| | | @PostMapping ("qualityReviewSearch") |
| | | public Result qualityReviewSearch(){ |
| | | return Result.seccess(reportingWorkService.qualityReviewSearchSv()); |
| | | } |
| | | |
| | | @ApiOperation("质检审核审核") |
| | | @SaCheckPermission("qualityInspectionReview.review") |
| | | @PostMapping ("/updateQualityStatus/{reportingWorkId}/{username}") |
| | |
| | | return Result.seccess(reportingWorkService.SaveReportingWorkSv(reportingWork)); |
| | | } |
| | | |
| | | @ApiOperation("报工转移") |
| | | @PostMapping ("/reportingWorkTransfer") |
| | | public Result reportingWorkTransfer(@RequestBody Map<String,String> reportingWork) { |
| | | return Result.seccess(reportingWorkService.reportingWorkTransferSv(reportingWork)); |
| | | } |
| | | |
| | | @ApiOperation("手机查询当班产量") |
| | | @PostMapping ("/selectShiftQuantity") |
| | | public Result selectShiftQuantity(@RequestBody Map<String,Object> reportingWork) { |
| | | return Result.seccess(reportingWorkService.selectShiftQuantitySv(reportingWork)); |
| | | } |
| | | |
| | | @ApiOperation("手机查询本班组报工记录") |
| | | @PostMapping("/selectReportingWorkRecordByPhone") |
| | | public Result selectReportingWorkRecordByPhone(@RequestBody Map<String,Object> selectPam) { |
| | | return Result.seccess(reportingWorkService.selectReportingWorkRecordByPhoneSv(selectPam)); |
| | | } |
| | | |
| | | } |