mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
新增 浙江省平台推送历史充电订单接口
This commit is contained in:
@@ -93,6 +93,26 @@ public class ThirdPartyNotificationController extends BaseController {
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 历史充电订单信息推送
|
||||
*/
|
||||
@PostMapping("/notificationChargeOrderInfoHistory")
|
||||
public AjaxResult notificationChargeOrderInfoHistory(@RequestBody NotificationDTO dto) {
|
||||
AjaxResult result;
|
||||
try {
|
||||
notificationService.notificationChargeOrderInfoHistory(dto);
|
||||
result = AjaxResult.success();
|
||||
} catch (BusinessException e) {
|
||||
logger.error("历史充电订单信息推送失败", e);
|
||||
result = AjaxResult.error(e.getMessage());
|
||||
} catch (Exception e) {
|
||||
logger.error("历史充电订单信息推送失败", e);
|
||||
result = AjaxResult.error();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 站点功率信息推送
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user