From 40382150ffffa3afe8d51fc3b88838a246fcdf42 Mon Sep 17 00:00:00 2001 From: caiyuchao Date: Sat, 18 Jan 2025 18:31:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=89=93=E5=8D=B0oamda=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/wfc/system/service/impl/SysDashboardServiceImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wfc-modules/wfc-system/src/main/java/org/wfc/system/service/impl/SysDashboardServiceImpl.java b/wfc-modules/wfc-system/src/main/java/org/wfc/system/service/impl/SysDashboardServiceImpl.java index a356d57..f6b54df 100644 --- a/wfc-modules/wfc-system/src/main/java/org/wfc/system/service/impl/SysDashboardServiceImpl.java +++ b/wfc-modules/wfc-system/src/main/java/org/wfc/system/service/impl/SysDashboardServiceImpl.java @@ -3,6 +3,7 @@ package org.wfc.system.service.impl; import cn.hutool.core.util.ObjectUtil; import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.github.pagehelper.PageHelper; +import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; @@ -35,6 +36,7 @@ import java.util.List; * @author: cyc * @since: 2025-01-07 */ +@Slf4j @Service public class SysDashboardServiceImpl implements ISysDashboardService { @Autowired @@ -55,6 +57,7 @@ public class SysDashboardServiceImpl implements ISysDashboardService { if (siteList.getBody() == null) { return getDataTable(Collections.emptyList(), 0L); } + log.info("Omada reulst msg: {}",siteList.getBody().getMsg()); List sites = siteList.getBody().getResult().getData(); List siteVos = new ArrayList<>(); for (SiteSummaryInfo site : sites) {