| | |
| | | * 中控(2楼):码垛完成下发入库信息 |
| | | */ |
| | | @PostMapping("/palletizing/complete/auth/v1") |
| | | @AppAuth(memo = "中控(2楼):码垛完成下发入库信息") |
| | | // @AppAuth(memo = "中控(2楼):码垛完成下发入库信息") |
| | | public synchronized R PalletizingCompleteTwoFloorParam(@RequestHeader(required = false) String appkey, |
| | | @RequestBody PalletizingCompleteTwoFloorParam param, |
| | | HttpServletRequest request) { |
| | |
| | | @RequestBody SingleUnstackingCompleteParam param, |
| | | HttpServletRequest request) { |
| | | auth(appkey, param, request); |
| | | openService.singleUnstackingComplete(param); |
| | | try{ |
| | | openService.singleUnstackingComplete(param); |
| | | } catch (Exception e){ |
| | | return R.error(e.getMessage()).add(e.getMessage()); |
| | | } |
| | | return R.ok(param); |
| | | } |
| | | |
| | |
| | | @RequestBody SingleMountUnstackingCompleteParam param, |
| | | HttpServletRequest request) { |
| | | auth(appkey, param, request); |
| | | openService.singleMountUnstackingComplete(param); |
| | | try{ |
| | | openService.singleMountUnstackingComplete(param); |
| | | } catch (Exception e){ |
| | | return R.error(e.getMessage()).add(e.getMessage()); |
| | | } |
| | | return R.ok(param); |
| | | } |
| | | |