|
|
@@ -78,8 +78,8 @@ public class AppletStationController {
|
|
|
@Operation(summary = "获取当前充电订单实时费用")
|
|
|
@GetMapping("/charging-cost")
|
|
|
@ApiRateLimit(prefix = "applet:charging_cost", limitType = ApiRateLimit.LimitType.IP, count = 2000, time = 60, message = "获取充电费用请求过于频繁,请稍后再试")
|
|
|
- public Result<AppChargingCostVO> getCurrentChargingCost() {
|
|
|
- return Result.success(appletHomeService.getCurrentChargingCost());
|
|
|
+ public Result<AppChargingCostVO> getCurrentChargingCost(String orderNo) {
|
|
|
+ return Result.success(appletHomeService.getCurrentChargingCost(orderNo));
|
|
|
}
|
|
|
|
|
|
/**
|