| | |
| | | |
| | | |
| | | @GetMapping("/queryBill") |
| | | public R<ProfitSharingResult> queryBill(String transactionId,String outOrderNo) throws WxPayException { |
| | | ProfitSharingResult result = orderService.queryBill(transactionId,outOrderNo); |
| | | public R<ProfitSharingResult> queryBill(String orderId) throws WxPayException { |
| | | ProfitSharingResult result = orderService.queryBill(orderId); |
| | | return R.ok(result); |
| | | } |
| | | |
| | | /** |
| | | * 获取活动订单商品id |
| | | * @param activityId |
| | | * @return |
| | | */ |
| | | @PostMapping("/getActivityOrderGoods") |
| | | public R<List<String>> getActivityOrderGoods(@RequestBody String activityId){ |
| | | List<String> activityOrderGoods = orderService.getActivityOrderGoods(activityId); |
| | | return R.ok(activityOrderGoods); |
| | | } |
| | | } |