| | |
| | | @ApiOperation("删除报工接口") |
| | | @SaCheckPermission("selectReportingWorks.delete") |
| | | @PostMapping("/deleteWork/{reportingWorkId}/{processId}/{thisProcess}/{userId}/{userName}") |
| | | public Result deleteWork(@PathVariable String reportingWorkId,@PathVariable String processId, |
| | | @PathVariable String thisProcess,@PathVariable String userId |
| | | ,@PathVariable String userName){ |
| | | public Result deleteWork(@PathVariable String reportingWorkId, |
| | | @PathVariable String processId, |
| | | @PathVariable String thisProcess, |
| | | @PathVariable String userId |
| | | ,@PathVariable String userName){ |
| | | |
| | | return Result.seccess(reportingWorkService.deleteWorkSv(reportingWorkId,processId,thisProcess,userId,userName)); |
| | | |
| | |
| | | return Result.seccess(reportingWorkService.selectReportingWorkRecordByPhoneSv(selectPam)); |
| | | } |
| | | |
| | | @ApiOperation("报工入库接口") |
| | | @ApiOperation("手机查询本工序设备") |
| | | @PostMapping("/selectEquipmentByProcess/{process}") |
| | | public Result selectEquipmentByProcess(@PathVariable String process) { |
| | | return Result.seccess(reportingWorkService.selectEquipmentByProcessSv(process)); |
| | | }@ApiOperation("报工入库接口") |
| | | @PostMapping("/saveWorkStorage") |
| | | public Result saveWorkStorage( @RequestBody Map<String,Object> object){ |
| | | return Result.seccess(reportingWorkService.saveWorkStorage(object)); |
| | | |
| | | } |
| | | |
| | | } |
| | | }} |