|
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.diagbot.dto.EntryNumDTO;
|
|
import com.diagbot.dto.EntryNumDTO;
|
|
import com.diagbot.dto.HomePageNumDTO;
|
|
import com.diagbot.dto.HomePageNumDTO;
|
|
import com.diagbot.dto.LevelStatisticsDTO;
|
|
import com.diagbot.dto.LevelStatisticsDTO;
|
|
|
|
+import com.diagbot.dto.LevelStatisticsTZDTO;
|
|
import com.diagbot.util.ExcelUtils;
|
|
import com.diagbot.util.ExcelUtils;
|
|
import com.diagbot.vo.FilterOrderVO;
|
|
import com.diagbot.vo.FilterOrderVO;
|
|
import com.diagbot.vo.FilterPageVO;
|
|
import com.diagbot.vo.FilterPageVO;
|
|
@@ -64,4 +65,15 @@ public class ConsoleExportFacade {
|
|
ExcelUtils.exportExcel(records, null, "sheet1", LevelStatisticsDTO.class, fileName, response, 12.8f);
|
|
ExcelUtils.exportExcel(records, null, "sheet1", LevelStatisticsDTO.class, fileName, response, 12.8f);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 各科室缺陷占比(组合)-台州
|
|
|
|
+ *
|
|
|
|
+ * @param filterOrderVO
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ public void levelExport_TZ(HttpServletResponse response, FilterOrderVO filterOrderVO) {
|
|
|
|
+ List<LevelStatisticsTZDTO> records = consoleFacade.levelStatisticsByDeptClass_TZ(filterOrderVO);
|
|
|
|
+ String fileName = "各科室缺陷占比-台州.xls";
|
|
|
|
+ ExcelUtils.exportExcel(records, null, "sheet1", LevelStatisticsTZDTO.class, fileName, response, 12.8f);
|
|
|
|
+ }
|
|
}
|
|
}
|