| | |
| | | @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)); |
| | | |
| | |
| | | public Result saveWorkStorage( @RequestBody Map<String,Object> object){ |
| | | return Result.seccess(reportingWorkService.saveWorkStorage(object)); |
| | | |
| | | }} |
| | | } |
| | | |
| | | @ApiOperation("Mes报工基础数据") |
| | | @PostMapping ("/mesBasicData") |
| | | public Result mesBasicData() { |
| | | return Result.seccess(reportingWorkService.mesBasicDataSv()); |
| | | } |
| | | |
| | | } |
| | | |
| | | |