|
|
@@ -61,7 +61,7 @@ public class OrderPayControllerV2 {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("衫德h5快捷+绑卡")
|
|
|
- @RequestMapping(value = "/sandQuickBind", produces = "text/html")
|
|
|
+ @RequestMapping("/sandQuickBind")
|
|
|
@ResponseBody
|
|
|
public String sandQuickBind(@RequestParam Long id) {
|
|
|
return orderPayService.payOrderQuickBind(id);
|
|
|
@@ -108,7 +108,7 @@ public class OrderPayControllerV2 {
|
|
|
return orderPayService.payGiftQuick(id);
|
|
|
}
|
|
|
|
|
|
- @RequestMapping(value = "/gift/sandQuickBind", produces = "text/html")
|
|
|
+ @RequestMapping("/gift/sandQuickBind")
|
|
|
@ResponseBody
|
|
|
public String payGiftQuickBind(@RequestParam Long id) {
|
|
|
return orderPayService.payGiftQuickBind(id);
|
|
|
@@ -140,7 +140,7 @@ public class OrderPayControllerV2 {
|
|
|
return orderPayService.payMintQuick(id);
|
|
|
}
|
|
|
|
|
|
- @RequestMapping(value = "/mint/sandQuickBind", produces = "text/html")
|
|
|
+ @RequestMapping("/mint/sandQuickBind")
|
|
|
@ResponseBody
|
|
|
public String payMintQuickBind(@RequestParam Long id) {
|
|
|
return orderPayService.payMintQuickBind(id);
|
|
|
@@ -177,7 +177,7 @@ public class OrderPayControllerV2 {
|
|
|
return orderPayService.rechargeQuick(userId, amount);
|
|
|
}
|
|
|
|
|
|
- @RequestMapping(value = "/recharge/sandQuickBind", produces = "text/html")
|
|
|
+ @RequestMapping("/recharge/sandQuickBind")
|
|
|
@ResponseBody
|
|
|
public String payRechargeQuickBind(@RequestParam Long userId, @RequestParam BigDecimal amount) {
|
|
|
return orderPayService.rechargeQuickBind(userId, amount);
|
|
|
@@ -203,7 +203,7 @@ public class OrderPayControllerV2 {
|
|
|
return orderPayService.payAuctionQuick(id);
|
|
|
}
|
|
|
|
|
|
- @RequestMapping(value = "/auction/sandQuickBind", produces = "text/html")
|
|
|
+ @RequestMapping("/auction/sandQuickBind")
|
|
|
@ResponseBody
|
|
|
public String payAuctionQuickBind(@RequestParam Long id) {
|
|
|
return orderPayService.payAuctionQuickBind(id);
|