新增 内蒙古平台推送历史订单接口

This commit is contained in:
Lemon
2025-04-10 09:49:59 +08:00
parent fd90a5e312
commit fd8b33d5db

View File

@@ -171,4 +171,24 @@ public class NeiMengGuController extends ThirdPartyBaseController {
return response;
}
/**
* 推送历史充电订单 notificationChargeOrderInfoHistory
* @return
*/
@GetMapping("/v1/notificationChargeOrderInfoHistory/{orderCode}")
public RestApiResponse<?> notificationChargeOrderInfoHistory(@PathVariable String orderCode) {
logger.info("{}-推送历史充电订单 params:{}", platformName, orderCode);
RestApiResponse<?> response = null;
try {
// 执行逻辑
String result = platformLogic.notificationChargeOrderInfoHistory(orderCode);
response = new RestApiResponse<>(result);
} catch (Exception e) {
logger.error("{}-推送历史充电订单", platformName, e);
response = new RestApiResponse<>(e);
}
logger.info("{}-推送历史充电订单 result:{}", platformName, response);
return response;
}
}