|
|
@@ -86,9 +86,9 @@ public class AppletStationController {
|
|
|
* @return 实时充电费用信息,如果没有正在充电的订单则返回null
|
|
|
*/
|
|
|
@Operation(summary = "渠道方获取当前充电订单实时费用")
|
|
|
- @GetMapping("/chargingCost/{ChargeOrderNo}")
|
|
|
- public Result<AppChargingCostVO> getChargingCost(@PathVariable("") String ChargeOrderNo) {
|
|
|
- return Result.success(appletHomeService.getChargingCost(ChargeOrderNo));
|
|
|
+ @GetMapping("/chargingCost/{chargeOrderNo}")
|
|
|
+ public Result<AppChargingCostVO> getChargingCost(@PathVariable("chargeOrderNo") String chargeOrderNo) {
|
|
|
+ return Result.success(appletHomeService.getChargingCost(chargeOrderNo));
|
|
|
}
|
|
|
|
|
|
/**
|