Browse Source

新增微信支付代码

赵冬冬 4 years ago
parent
commit
70b569f649

+ 3 - 5
forest-portal/portal-server/src/main/java/com/hwrj/cloud/portal/controller/WechatH5PayController.java

@@ -17,9 +17,7 @@ import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.ResponseBody;
+import org.springframework.web.bind.annotation.*;
 
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
@@ -47,9 +45,9 @@ public class WechatH5PayController {
     @Autowired
     private OmsOrderPayService omsOrderPayService;
 
-    @GetMapping("/pay")
+    @PostMapping("/pay")
     @ResponseBody
-    public CommonResult pay(WxPayFrom wxPayFrom, HttpServletRequest request) {
+    public CommonResult pay(@RequestBody WxPayFrom wxPayFrom, HttpServletRequest request) {
         Long orderId = wxPayFrom.getOrderId();
         String openid = wxPayFrom.getOpenid();
         String tradeType = wxPayFrom.getTradeType();