@@ -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));
}