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) {