| | |
| | | } |
| | | @Resource |
| | | private SysUserClient sysUserClient; |
| | | @PostMapping("/getShoppingOrderInfoById") |
| | | @GetMapping("/getShoppingOrderInfoById") |
| | | @ApiOperation(value = "根据订单id查看订单详情", tags = {"管理后台-兑换订单"}) |
| | | public AjaxResult<TExchangeOrder> getShoppingOrderList(String id) { |
| | | TExchangeOrder byId = exchangeOrderService.getById(id); |
| | |
| | | */ |
| | | @GetMapping("/getCodeByOrderId/{goodsIds}") |
| | | public R<List<String>> getCodeByOrderId(@PathVariable("goodsIds") String goodsIds){ |
| | | String[] split = goodsIds.split("-"); |
| | | String[] split = goodsIds.split(","); |
| | | List<String> strings = new ArrayList<>(); |
| | | for (String s : split) { |
| | | if (s.contains("-")){ |