update 查询日志列表

This commit is contained in:
Guoqs
2024-07-12 14:13:38 +08:00
parent 978a5c4e70
commit 4c02ae60ce
3 changed files with 10 additions and 2 deletions

View File

@@ -194,6 +194,13 @@ public class PileBasicInfoController extends BaseController {
pileFeedList = pileMsgRecordService.getPileFeedList(dto);
} catch (Exception e) {
logger.error("查询充电桩通讯日志error", e);
pileFeedList = PageResponse.builder()
.list(Lists.newArrayList())
.pageNum(dto.getPageNum())
.pageSize(dto.getPageSize())
.total(0)
.pages(0)
.build();
}
return AjaxResult.success(pileFeedList);
}