skyline пре 1 година
родитељ
комит
830499fb2b

+ 1 - 1
car-wash-miniapp/src/main/java/com/kym/miniapp/controller/PaymentController.java

@@ -33,7 +33,7 @@ public class PaymentController {
     @ApiLog("微信支付")
     @GetMapping("/wxPay")
     @ResponseBody
-    R<?> prepay(@RequestParam Long rechargeConfigId, @RequestParam String stationId) {
+    R<?> prepay(@RequestParam Long rechargeConfigId, @RequestParam(value = "stationId", defaultValue = "000") String stationId) { //todo 前端更新后修改
         return R.success(wxPayService.wxPay(rechargeConfigId, stationId));
     }