管道基础大数据平台系统开发-【后端】-Server
`1
13693261870
2023-02-10 b1ea876692238ceb68e6efc0b499ccaa41f23b4b
src/main/java/com/lf/server/service/sys/ReportService.java
@@ -98,12 +98,13 @@
            return;
        }
        int rows = 1;
        String inputFile = "D:\\LF\\用户流量统计.docx";
        String outPutFile = "D:\\LF\\用户流量统计_new.docx";
        ArrayList<String[]> addList = new ArrayList<>();
        for (CountEntity ce : list) {
            String[] strs = new String[]{ce.getM1(), ce.getM2(), ce.getCount().toString()};
            String[] strs = new String[]{"" + rows++, ce.getM1(), ce.getM2(), ce.getCount().toString()};
            addList.add(strs);
        }