新增 苏州市平台相关Service、controller

This commit is contained in:
Lemon
2024-09-24 09:49:47 +08:00
parent 637ffc0946
commit 407b9586fd
8 changed files with 725 additions and 7 deletions

View File

@@ -24,8 +24,8 @@ public class ThirdPartyNotificationController extends BaseController {
public AjaxResult notificationStationInfo(@RequestBody NotificationDTO dto) {
AjaxResult result;
try {
notificationService.notificationStationInfo(dto);
result = AjaxResult.success();
String postResult = notificationService.notificationStationInfo(dto);
result = AjaxResult.success(postResult);
} catch (BusinessException e) {
logger.error("充电站信息变化推送失败", e);
result = AjaxResult.error(e.getMessage());