|
@@ -97,6 +97,7 @@ public class OrderPayControllerV2 {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "/gift/balance")
|
|
@RequestMapping(value = "/gift/balance")
|
|
|
|
|
+ @ResponseBody
|
|
|
public void payGiftOrderBalance(@RequestParam Long id, @RequestParam String tradeCode) {
|
|
public void payGiftOrderBalance(@RequestParam Long id, @RequestParam String tradeCode) {
|
|
|
orderPayService.payGiftBalance(id, SecurityUtils.getAuthenticatedUser().getId(), tradeCode);
|
|
orderPayService.payGiftBalance(id, SecurityUtils.getAuthenticatedUser().getId(), tradeCode);
|
|
|
}
|
|
}
|
|
@@ -134,6 +135,7 @@ public class OrderPayControllerV2 {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "/mint/balance")
|
|
@RequestMapping(value = "/mint/balance")
|
|
|
|
|
+ @ResponseBody
|
|
|
public void payMintOrderBalance(@RequestParam Long id, @RequestParam String tradeCode) {
|
|
public void payMintOrderBalance(@RequestParam Long id, @RequestParam String tradeCode) {
|
|
|
orderPayService.payMintOrderBalance(id, SecurityUtils.getAuthenticatedUser().getId(), tradeCode);
|
|
orderPayService.payMintOrderBalance(id, SecurityUtils.getAuthenticatedUser().getId(), tradeCode);
|
|
|
}
|
|
}
|