|
|
@@ -113,7 +113,6 @@ public class ChargerController {
|
|
|
*/
|
|
|
@ApiLog("EN+推送启动充电结果")
|
|
|
@PostMapping("/notification_start_charge_result")
|
|
|
- @ResponseBody
|
|
|
EnResponse notificationStartChargeResult(@RequestBody JSONObject json) {
|
|
|
return new EnResponse(enNotifyService.handleNotificationStartChargeResult(json));
|
|
|
}
|
|
|
@@ -140,6 +139,7 @@ public class ChargerController {
|
|
|
* @param json
|
|
|
* @return
|
|
|
*/
|
|
|
+ @ApiLog("推送停止充电结果")
|
|
|
@PostMapping("/notification_stop_charge_result")
|
|
|
EnResponse notificationStopChargeResult(@RequestBody JSONObject json) {
|
|
|
return new EnResponse(enNotifyService.handleNotificationStopChargeResult(json));
|
|
|
@@ -151,6 +151,7 @@ public class ChargerController {
|
|
|
* @param json
|
|
|
* @return
|
|
|
*/
|
|
|
+ @ApiLog("推送充电订单信息")
|
|
|
@PostMapping("/notification_charge_order_info")
|
|
|
EnResponse notificationChargeOrderInfo(@RequestBody JSONObject json) {
|
|
|
return new EnResponse(enNotifyService.handleNotificationChargeOrderInfo(json));
|
|
|
@@ -164,6 +165,7 @@ public class ChargerController {
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
+ @ApiLog("拉取EN+充电站信息数据并更新本地服务器数据")
|
|
|
@GetMapping("/pullEnStations")
|
|
|
R pullEnStationInfos() {
|
|
|
stationService.pullEnStationInfos();
|