|
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.diagbot.dto.AverageStatisticsDTO;
|
|
|
import com.diagbot.dto.AverageStatisticsFeeDTO;
|
|
|
import com.diagbot.dto.EntryNumDTO;
|
|
|
+import com.diagbot.dto.EntryNumGroupDTO;
|
|
|
import com.diagbot.dto.HomePageNumDTO;
|
|
|
import com.diagbot.dto.LevelStatisticsDTO;
|
|
|
import com.diagbot.dto.LevelStatisticsTZDTO;
|
|
@@ -137,8 +138,8 @@ public class ConsoleExportFacade {
|
|
|
filterPageVO.setCurrent(1L);
|
|
|
filterPageVO.setSize(Long.MAX_VALUE);
|
|
|
filterPageVO.setSearchCount(false);
|
|
|
- IPage<EntryNumDTO> page = consoleFacade.entryCountGroupByEntryPage(filterPageVO);
|
|
|
+ IPage<EntryNumGroupDTO> page = consoleFacade.entryCountGroupByEntryPage(filterPageVO);
|
|
|
String fileName = "缺陷详情.xls";
|
|
|
- ExcelUtils.exportExcel(page.getRecords(), null, "sheet1", EntryNumDTO.class, fileName, response, 12.8f);
|
|
|
+ ExcelUtils.exportExcel(page.getRecords(), null, "sheet1", EntryNumGroupDTO.class, fileName, response, 12.8f);
|
|
|
}
|
|
|
}
|