|
|
@@ -108,6 +108,12 @@ public class OrderPayControllerV2 {
|
|
|
return orderPayService.payGiftQuick(id);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping(value = "/gift/sandQuickBind", produces = "text/html")
|
|
|
+ @ResponseBody
|
|
|
+ public String payGiftQuickBind(@RequestParam Long id) {
|
|
|
+ return orderPayService.payGiftQuickBind(id);
|
|
|
+ }
|
|
|
+
|
|
|
@RequestMapping(value = "/gift/agreement")
|
|
|
@ResponseBody
|
|
|
public Map<String, Object> payGiftAgreement(@RequestParam Long id, String bindCardId) {
|
|
|
@@ -134,6 +140,12 @@ public class OrderPayControllerV2 {
|
|
|
return orderPayService.payMintQuick(id);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping(value = "/mint/sandQuickBind", produces = "text/html")
|
|
|
+ @ResponseBody
|
|
|
+ public String payMintQuickBind(@RequestParam Long id) {
|
|
|
+ return orderPayService.payMintQuickBind(id);
|
|
|
+ }
|
|
|
+
|
|
|
@RequestMapping(value = "/mint/balance")
|
|
|
@ResponseBody
|
|
|
public void payMintOrderBalance(@RequestParam Long id, @RequestParam String tradeCode) {
|
|
|
@@ -165,6 +177,12 @@ public class OrderPayControllerV2 {
|
|
|
return orderPayService.rechargeQuick(userId, amount);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping(value = "/recharge/sandQuickBind", produces = "text/html")
|
|
|
+ @ResponseBody
|
|
|
+ public String payRechargeQuickBind(@RequestParam Long userId, @RequestParam BigDecimal amount) {
|
|
|
+ return orderPayService.rechargeQuickBind(userId, amount);
|
|
|
+ }
|
|
|
+
|
|
|
@RequestMapping(value = "/auction/alipay", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
public String payAuctionOrderAlipayH5(Long id) {
|
|
|
@@ -185,6 +203,12 @@ public class OrderPayControllerV2 {
|
|
|
return orderPayService.payAuctionQuick(id);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping(value = "/auction/sandQuickBind", produces = "text/html")
|
|
|
+ @ResponseBody
|
|
|
+ public String payAuctionQuickBind(@RequestParam Long id) {
|
|
|
+ return orderPayService.payAuctionQuickBind(id);
|
|
|
+ }
|
|
|
+
|
|
|
@RequestMapping(value = "/auction/balance")
|
|
|
@ResponseBody
|
|
|
public void payAuctionOrderBalance(@RequestParam Long id, @RequestParam String tradeCode) {
|