|
@@ -25,7 +25,7 @@ public class LinkDataController {
|
|
|
* @return 停推送启动充电结果VO
|
|
* @return 停推送启动充电结果VO
|
|
|
*/
|
|
*/
|
|
|
@Operation(summary = "推送启动充电结果")
|
|
@Operation(summary = "推送启动充电结果")
|
|
|
- @GetMapping("/notification_start_charge_result")
|
|
|
|
|
|
|
+ @PostMapping("/notification_start_charge_result")
|
|
|
public ResponseParmsEntity chargeResponse(@RequestBody RequestParmsEntity requestDTO){
|
|
public ResponseParmsEntity chargeResponse(@RequestBody RequestParmsEntity requestDTO){
|
|
|
return chargingReceptionService.chargeResponse(requestDTO);
|
|
return chargingReceptionService.chargeResponse(requestDTO);
|
|
|
}
|
|
}
|
|
@@ -34,7 +34,7 @@ public class LinkDataController {
|
|
|
* 2.6 推送充电状态
|
|
* 2.6 推送充电状态
|
|
|
* */
|
|
* */
|
|
|
@Operation(summary = "推送充电状态")
|
|
@Operation(summary = "推送充电状态")
|
|
|
- @GetMapping("/notification_equip_charge_status")
|
|
|
|
|
|
|
+ @PostMapping("/notification_equip_charge_status")
|
|
|
public ResponseParmsEntity chargeStatusResponse(@RequestBody RequestParmsEntity requestDTO){
|
|
public ResponseParmsEntity chargeStatusResponse(@RequestBody RequestParmsEntity requestDTO){
|
|
|
return chargingReceptionService.chargeStatusResponse(requestDTO);
|
|
return chargingReceptionService.chargeStatusResponse(requestDTO);
|
|
|
}
|
|
}
|
|
@@ -43,7 +43,7 @@ public class LinkDataController {
|
|
|
* 2.8 推送停止充电结果
|
|
* 2.8 推送停止充电结果
|
|
|
* */
|
|
* */
|
|
|
@Operation(summary = "推送停止充电结果")
|
|
@Operation(summary = "推送停止充电结果")
|
|
|
- @GetMapping("/notification_stop_charge_result")
|
|
|
|
|
|
|
+ @PostMapping("/notification_stop_charge_result")
|
|
|
public ResponseParmsEntity stopChargeResponse(@RequestBody RequestParmsEntity requestDTO){
|
|
public ResponseParmsEntity stopChargeResponse(@RequestBody RequestParmsEntity requestDTO){
|
|
|
return chargingReceptionService.stopChargeResponse(requestDTO);
|
|
return chargingReceptionService.stopChargeResponse(requestDTO);
|
|
|
}
|
|
}
|
|
@@ -52,7 +52,7 @@ public class LinkDataController {
|
|
|
* 2.9 推送充电订单信息
|
|
* 2.9 推送充电订单信息
|
|
|
* */
|
|
* */
|
|
|
@Operation(summary = "推送充电订单信息")
|
|
@Operation(summary = "推送充电订单信息")
|
|
|
- @GetMapping("/notification_charge_order_info")
|
|
|
|
|
|
|
+ @PostMapping("/notification_charge_order_info")
|
|
|
public ResponseParmsEntity chargeOrderResponse(@RequestBody RequestParmsEntity requestDTO){
|
|
public ResponseParmsEntity chargeOrderResponse(@RequestBody RequestParmsEntity requestDTO){
|
|
|
return chargingReceptionService.chargeOrderResponse(requestDTO);
|
|
return chargingReceptionService.chargeOrderResponse(requestDTO);
|
|
|
}
|
|
}
|