| | |
| | | } |
| | | |
| | | @ApiOperation(value = "接收者确认反馈",notes = "传入id,confirmStatus,replyContent") |
| | | @PostMapping("confirmFeedback") |
| | | @PutMapping("updateConfirmFeedback") |
| | | public Response confirmFeedback(@RequestBody BOMFeedback feedback){ |
| | | return service.confirmFeedback(feedback); |
| | | } |
| | | |
| | | @ApiOperation(value = "追加反馈接受者",notes = "传入id,confirmStatus,replyContent") |
| | | @PutMapping("updateReceiverUserAppend") |
| | | public Response receiverUserAppend(@RequestParam String id,@RequestParam String userId,@RequestParam String username){ |
| | | return service.receiverUserAppend(id,userId,username); |
| | | } |
| | | |
| | | @ApiOperation("更新ECR流水号") |
| | | @PostMapping("updateEcrNumber") |
| | | public Response updateEcrNumber(int id,String ecrNumber){ |