| | |
| | | return service.getRecevierStatus(flag,pageCurr,pageSize); |
| | | } |
| | | |
| | | @ApiOperation(value = "接收者确认反馈") |
| | | @GetMapping("setconfirmFk") |
| | | public Response setconfirmFk(@RequestParam int id){ |
| | | return service.setconfirmFk(id); |
| | | @ApiOperation(value = "接收者确认反馈",notes = "传入id,confirmStatus,replyContent") |
| | | @GetMapping("confirmFeedback") |
| | | public Response confirmFeedback(@RequestBody BOMFeedback feedback){ |
| | | return service.confirmFeedback(feedback); |
| | | } |
| | | |
| | | @ApiOperation("更新ECR流水号") |
| | | @PostMapping("updateEcrNumber") |
| | | public Response updateEcrNumber(int id,String ecrNumber){ |
| | | return service.updateEcrNumber(id,ecrNumber); |
| | | } |
| | | |
| | | @ApiOperation("提交反馈") |