| | |
| | | |
| | | @ApiOperation("报工新增查询") |
| | | @SaCheckPermission("AddReportingWork.search") |
| | | @PostMapping ("/addSelectLastWork/{processIdStr}/{technologyStr}/{process}") |
| | | @PostMapping ("/addSelectLastWork/{processIdStr}/{technologyStr}/{process}/{reportType}") |
| | | public Result AddSelectLastWork( |
| | | @PathVariable String processIdStr, |
| | | @PathVariable String technologyStr, |
| | | @PathVariable String process) { |
| | | return Result.seccess(reportingWorkService.AddSelectLastWorkSv(processIdStr,technologyStr,process)); |
| | | @PathVariable String process, |
| | | @PathVariable String reportType) { |
| | | return Result.seccess(reportingWorkService.AddSelectLastWorkSv(processIdStr,technologyStr,process,reportType)); |
| | | } |
| | | @ApiOperation("查询工序") |
| | | @PostMapping ("/selectProcess") |